-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
35 lines (35 loc) · 864 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
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
// "incremental": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"types": ["vite/client", "vite-plugin-vue-layouts/client"],
"typeRoots": ["./node_modules/@types/", "./types"],
"paths": {
"~/*": ["src/*"],
"#/*": ["types/*"]
}
},
"include": [
"types/*.d.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/components/*.vue",
"src/components/**/*.vue",
"vite.config.ts"
],
"exclude": ["dist", "node_modules"]
}