-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
40 lines (38 loc) · 911 Bytes
/
tsconfig.json
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
36
37
38
39
40
{
"compilerOptions": {
"target": "ES2020",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"useDefineForClassFields": true,
"baseUrl": "./",
"module": "ESNext",
/* Bundler mode */
"moduleResolution": "Bundler",
"paths": {
"~/*": ["src/*"],
"~components/*": ["src/core/components/*"],
"~composables/*": ["src/core/composables/*"],
"~utils/*": ["src/core/utils/*"],
"~shared/*": ["src/shared/*"]
},
"resolveJsonModule": true,
"types": [
"vitest/importMeta"
],
/* Linting */
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"declaration": true,
"declarationDir": "./tsc-types",
"isolatedModules": true,
"skipLibCheck": true
},
"exclude": [
"**/node_modules/**",
"**/dist/**",
"src/demo",
"**/*.md",
"tsc-types"
]
}