31 lines
716 B
JSON
Executable File
31 lines
716 B
JSON
Executable File
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"types": ["vite/client"],
|
|
"typeRoots": ["./node_modules/"],
|
|
"target": "ES2023",
|
|
"lib": ["ES2023", "DOM", "WebWorker", "WebWorker.Iterable"],
|
|
"module": "ESNext",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
/* Alias */
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx",
|
|
"./src/**/*.vue",
|
|
],
|
|
}
|