21 lines
478 B
JSON
21 lines
478 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2018",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Node",
|
||
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowJs": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"strict": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"~/*": ["./*"],
|
||
|
|
"@/*": ["./*"]
|
||
|
|
},
|
||
|
|
"types": ["@types/node", "@nuxt/types", "nuxt-i18n", "@nuxtjs/toast", "vue-rx"]
|
||
|
|
},
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|