-
Notifications
You must be signed in to change notification settings - Fork 27
/
tsconfig.json
40 lines (40 loc) · 845 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": {
"baseUrl": ".",
"module": "ESNext",
"strict": true,
"esModuleInterop": true,
"jsx": "preserve",
"incremental": false,
"outDir": "./",
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"types": [
"vitest",
"cypress",
"vue/ref-macros",
"vite/client",
"vite-plugin-pages/client",
"vite-plugin-vue-layouts/client"
],
"paths": {
"~/*": ["src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"exclude": [
"dist",
"node_modules",
"cypress",
"build",
"scripts",
"postcss.config.js",
"tailwind.config.js",
"examples"
]
}