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