-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
43 lines (43 loc) · 1.05 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": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"jsx": "preserve",
"rootDir": ".",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["DOM", "ESNext"],
"skipLibCheck": true,
"types": ["vite/client", "node", "color-convert", "js-md5", "uuid", "src/vite-env"],
"allowSyntheticDefaultImports": true,
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@comp/*": ["src/components/*"],
"@Hutao/*": ["src/plugins/Hutao/*"],
"@Mys/*": ["src/plugins/Mys/*"],
"@Sqlite/*": ["src/plugins/Sqlite/*"],
"@Bili/*": ["src/plugins/Bili/*"]
}
},
"include": [
"*.yml",
"*.yaml",
"package.json",
"src/**/*.d.ts",
"src/**/*.ts",
"src/**/*.vue",
"src/App.vue",
"src/data/**/*.json",
"tsconfig.json",
"vite.config.ts",
"eslint.config.mjs"
],
"exclude": ["node_modules"]
}