forked from xpf0000/FlyEnv
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
50 lines (50 loc) · 1.06 KB
/
tsconfig.json
File metadata and controls
50 lines (50 loc) · 1.06 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
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"useDefineForClassFields": true,
"moduleResolution": "bundler",
"strict": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": ["esnext", "dom"],
"sourceMap": false,
"strictFunctionTypes": false,
"verbatimModuleSyntax": false,
"importsNotUsedAsValues": "preserve",
"noUnusedLocals": true,
"noImplicitReturns": true,
"isolatedModules": true,
"noImplicitAny": true,
"allowJs": false,
"noEmit": true,
"types": ["vite/client", "node"],
"baseUrl": "./",
"paths": {
"@/*": [
"src/render/*"
],
"@shared/*": [
"src/shared/*"
],
"@lang/*": [
"src/lang/*"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.jsx",
"src/**/*.js",
"src/**/*.vue",
"configs/**/*.ts",
"configs/**/*.js",
"scripts/**/*.ts",
"scripts/**/*.js"
]
}