-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
29 lines (29 loc) · 831 Bytes
/
tsconfig.node.json
File metadata and controls
29 lines (29 loc) · 831 Bytes
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
{
"compilerOptions": {
"lib": ["esnext", "dom"],
"target": "esnext",
"sourceMap": true,
// jest webstorm debugger和报错信息显示必须开启sourcemap
"allowJs": true,
// "jsx": "react",
"moduleResolution": "node",
// "removeComments": true,
"declaration": true,
// "rootDir": "src",
"forceConsistentCasingInFileNames": false,
"noImplicitReturns": true,
"noImplicitThis": false,
"noImplicitAny": false,
"importHelpers": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"files": ["docs/vite.config.ts"],
"include": ["docs/.vitepress", "scripts/*.ts"]
}