7609715d9e
* remove explicity typescript version * i hate javascript
35 lines
801 B
JSON
35 lines
801 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"types": [
|
|
"@nuxt/types",
|
|
"@nuxtjs/axios",
|
|
"@types/node",
|
|
"@nuxtjs/i18n",
|
|
"@nuxtjs/auth-next",
|
|
"@nuxtjs/vuetify",
|
|
"@types/sortablejs"
|
|
]
|
|
},
|
|
"include": ["**/*", ".eslintrc.js"],
|
|
"exclude": ["node_modules", ".nuxt", "dist"],
|
|
"vueCompilerOptions": {
|
|
"experimentalCompatMode": 2
|
|
}
|
|
}
|