36 lines
753 B
JSON
36 lines
753 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"target": "esnext",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
],
|
|
"rootDir": "src",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
},
|
|
"vueCompilerOptions": {
|
|
"strictTemplates": true,
|
|
},
|
|
"include": [
|
|
"src",
|
|
],
|
|
"exclude": [
|
|
"./eslint.config.js"
|
|
]
|
|
}
|