25 lines
507 B
JSON
25 lines
507 B
JSON
|
|
{
|
||
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"types": [
|
||
|
|
"vite/client"
|
||
|
|
],
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": [
|
||
|
|
"./src/*"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
/* Linting */
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.ts",
|
||
|
|
"src/**/*.tsx",
|
||
|
|
"src/**/*.vue"
|
||
|
|
]
|
||
|
|
}
|