2021-07-31 14:00:28 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-04-24 13:00:04 -08:00
|
|
|
"jsx": "preserve",
|
2021-07-31 14:00:28 -08:00
|
|
|
"target": "ES2018",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
2021-07-31 14:45:28 -08:00
|
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
2021-07-31 14:00:28 -08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"experimentalDecorators": true,
|
2021-08-01 19:24:47 -08:00
|
|
|
"strictPropertyInitialization": false,
|
2021-07-31 14:00:28 -08:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2021-07-31 14:45:28 -08:00
|
|
|
"~/*": ["./*"],
|
|
|
|
"@/*": ["./*"]
|
2021-07-31 14:00:28 -08:00
|
|
|
},
|
2022-05-25 10:14:24 -08:00
|
|
|
"types": [
|
|
|
|
"@nuxt/types",
|
|
|
|
"@nuxtjs/axios",
|
|
|
|
"@types/node",
|
|
|
|
"@nuxtjs/i18n",
|
|
|
|
"@nuxtjs/auth-next",
|
|
|
|
"@nuxtjs/vuetify",
|
|
|
|
"@types/sortablejs"
|
|
|
|
]
|
2021-07-31 14:00:28 -08:00
|
|
|
},
|
2021-09-09 08:51:29 -08:00
|
|
|
"vueCompilerOptions": {
|
2022-10-22 11:51:07 -08:00
|
|
|
"target": 2,
|
2021-09-09 08:51:29 -08:00
|
|
|
"experimentalCompatMode": 2
|
2022-10-22 11:51:07 -08:00
|
|
|
},
|
|
|
|
"include": ["**/*", ".eslintrc.js"],
|
|
|
|
"exclude": ["node_modules", ".nuxt", "dist"]
|
2021-07-31 14:00:28 -08:00
|
|
|
}
|