-
-
Notifications
You must be signed in to change notification settings - Fork 532
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 612 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@/*": ["./assets/*"],
},
"jsx": "preserve",
"types": ["vitest", "vite/client", "unplugin-vue-macros/macros-global", "vite-plugin-vue-layouts/client"],
},
"exclude": ["dist", "node_modules", "e2e"],
}