-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtsconfig.json
43 lines (43 loc) · 1.06 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
41
42
43
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"newLine": "LF",
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM", "es5", "es6", "dom.iterable", "es2022"],
"skipLibCheck": true,
"jsxImportSource": "vue",
"baseUrl": "./",
"paths": {
"@": ["src"],
"@/*": ["src/*"],
"@api": ["src/api"],
"@api/*": ["src/api/*"],
"@images": ["src/assets/images"],
"@images/*": ["src/assets/images"],
"@use-micro/*": ["src/micro/*"],
"@mock/*": ["mock/*"],
"@mock": ["mock/*"]
},
"types": ["vite/client", "vitest/globals", "naive-ui/volar"]
},
"include": [
"vite.config.ts",
"vite-helper/index.ts",
"vite-helper/types.ts",
"vite.custom.config.ts",
"package.json",
"vite-env.d.ts",
"./unplugin/**/*",
"src/**/*",
"mock/**/*",
"__test__/**/*"
]
}