-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
40 lines (40 loc) · 1.28 KB
/
tsconfig.web.json
File metadata and controls
40 lines (40 loc) · 1.28 KB
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
{
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
"compilerOptions": {
"incremental": true,
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": false,
"jsx": "preserve",
"sourceMap": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext","ES5","ES6", "dom", "ES2020","es2015.promise"],
"baseUrl": "./",
"allowJs": true,
"checkJs": true,
"paths": {
"@/*": ["src/renderer/src/*"],
"~/*": ["src/*"]
},
"types": ["vite/client", "element-plus/global.d.ts", "unplugin-icons/types/vue","@intlify/unplugin-vue-i18n/messages"],
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"allowSyntheticDefaultImports": true /* 允许默认导入 */,
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
},
"include": [
"src/renderer/src/env.d.ts",
"src/renderer/src/**/*",
"src/renderer/src/**/*.vue",
"src/renderer/src/i18n/locale/*",
"src/preload/*.d.ts",
"src/**/*.vue",
"src/settings.ts",
"src/renderer/*.d.ts",
"src/repositories/**/*",
"src/renderer/auto-imports.d.ts",
"src/renderer/global.d.ts" ],
"exclude": ["node_modules", "out"]
}