40 lines
		
	
	
		
			668 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			668 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "compilerOptions": {
 | |
|     "target": "ES2018",
 | |
|     "module": "ESNext",
 | |
|     "moduleResolution": "Node",
 | |
|     "lib": [
 | |
|       "ESNext",
 | |
|       "ESNext.AsyncIterable",
 | |
|       "DOM"
 | |
|     ],
 | |
|     "esModuleInterop": true,
 | |
|     "allowJs": true,
 | |
|     "sourceMap": true,
 | |
|     "strict": true,
 | |
|     "noEmit": true,
 | |
|     "experimentalDecorators": true,
 | |
|     "emitDecoratorMetadata": true,
 | |
|     "baseUrl": ".",
 | |
|     "paths": {
 | |
|       "~/*": [
 | |
|         "./*"
 | |
|       ],
 | |
|       "@/*": [
 | |
|         "./*"
 | |
|       ]
 | |
|     },
 | |
|     "types": [
 | |
|       "@types/node",
 | |
|       "@nuxtjs/toast",
 | |
|       "@nuxt/types",
 | |
|       "~/types/custom.d.ts"
 | |
|     ]
 | |
|   },
 | |
|   "exclude": [
 | |
|     "node_modules",
 | |
|     ".nuxt",
 | |
|     "dist"
 | |
|   ]
 | |
| }
 |