initial commit
This commit is contained in:
27
client/tsconfig.app.json
Normal file
27
client/tsconfig.app.json
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
"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,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["src/*"],
|
||||
"@components/*": ["src/components/*"],
|
||||
"@views/*": ["src/views/*"],
|
||||
"@assets/*": ["src/assets/*"],
|
||||
"@router/*": ["src/router/*"],
|
||||
"@css/*": ["src/assets/css/*"],
|
||||
"@img/*": ["src/assets/img/*"],
|
||||
"@svg/*": ["src/assets/svg/*"],
|
||||
"@models/*": ["src/models/*"],
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||||
}
|
||||
Reference in New Issue
Block a user