-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
40 lines (40 loc) · 1.11 KB
/
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": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["esnext", "dom"],
"module": "esnext",
"moduleResolution": "Node",
"noLib": false,
"paths": {
"/@/*": ["src/*"],
"@build/*": ["build/*"],
"/#/*": ["types/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
"strictFunctionTypes": false,
"suppressImplicitAnyIndexErrors": true,
"target": "esnext",
"types": [
"node",
"vite/client",
"element-plus/global",
"unplugin-vue-define-options/macros-global"
],
"typeRoots": ["./node_modules/@types/", "./types"]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "mock/*.ts", "vite.config.ts", "types/*.d.ts"],
"exclude": ["node_modules", "dist", "**/*.js"]
}