-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
25 lines (25 loc) · 851 Bytes
/
tsconfig.app.json
File metadata and controls
25 lines (25 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"decs.d.ts",
"env.d.ts",
"src/**/*",
"src/**/*.vue",
"node_modules/vitest/globals.d.ts"
],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"strict": true,
"strictPropertyInitialization": false,
// Option 'preserveValueImports' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
"preserveValueImports": false,
// Option 'importsNotUsedAsValues' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
"importsNotUsedAsValues": "remove",
"ignoreDeprecations": "5.0"
}
}