2020-12-21 22:06:13 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2018",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"ESNext.AsyncIterable",
|
|
|
|
"DOM"
|
|
|
|
],
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
2021-05-18 00:16:21 +02:00
|
|
|
"resolveJsonModule": true,
|
2020-12-21 22:06:13 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"experimentalDecorators": true,
|
2021-02-13 19:55:45 +01:00
|
|
|
"emitDecoratorMetadata": true,
|
2020-12-21 22:06:13 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"~/*": [
|
|
|
|
"./*"
|
|
|
|
],
|
|
|
|
"@/*": [
|
|
|
|
"./*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"types": [
|
|
|
|
"@types/node",
|
2021-02-13 19:55:45 +01:00
|
|
|
"@nuxtjs/toast",
|
|
|
|
"@nuxt/types",
|
2021-03-14 20:11:39 +01:00
|
|
|
"~/types/custom.d.ts",
|
2021-03-14 23:37:57 +01:00
|
|
|
"vuetify",
|
|
|
|
"nuxt-i18n"
|
2020-12-21 22:06:13 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
".nuxt",
|
|
|
|
"dist"
|
|
|
|
]
|
|
|
|
}
|