-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
35 lines (31 loc) · 1.01 KB
/
tsconfig.app.json
File metadata and controls
35 lines (31 loc) · 1.01 KB
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
26
27
28
29
30
31
32
33
34
35
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"paths": {
"@/*": ["./src/*"]
},
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"useDefineForClassFields": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"isolatedModules": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
// See <https://www.semver-ts.org/formal-spec/5-compiler-considerations.html#strictness>
// These 2 options are also part of the recommended tsconfig as of TS 5.9
"noUncheckedIndexedAccess": false,
"exactOptionalPropertyTypes": false
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
}