-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
37 lines (37 loc) · 994 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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"isolatedModules": true,
"useDefineForClassFields": true,
"preserveConstEnums": true,
"strict": true,
"jsx": "preserve",
"skipLibCheck": true,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"types": ["vite/client"],
"paths": {
"@/*": ["src/*"],
"@api": ["src/service/api"],
"@status": ["src/service/status"],
"@images/*": ["src/assets/images/*"],
"#/*": ["typings/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.d.ts",
"src/**/*.vue",
"test/**/*.ts",
"vite.config.ts",
"typings"
]
}