mirror of
https://github.com/DCsunset/taskwarrior-webui.git
synced 2025-08-18 21:43:06 +02:00
39 lines
682 B
JSON
39 lines
682 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": [
|
|
"esnext",
|
|
"esnext.asynciterable",
|
|
"dom"
|
|
],
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [
|
|
"./*"
|
|
],
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"types": [
|
|
"@types/node",
|
|
"@nuxt/types",
|
|
"@nuxtjs/axios",
|
|
"@nuxtjs/vuetify"
|
|
],
|
|
"typeRoots": ["./node_modules/@types", "./types"]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".nuxt",
|
|
"dist"
|
|
]
|
|
}
|