-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 878 Bytes
/
Copy pathtsconfig.json
File metadata and controls
33 lines (33 loc) · 878 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
30
31
32
33
{
"include": ["src/**/*", "webpack.config.ts", "webpack.dev.config.ts"],
"compilerOptions": {
// 1. Language and Environment
"types": ["node"],
"target": "ES2020",
// 2. Module System
"module": "ES2020",
"moduleResolution": "bundler",
"outDir": "./dist",
"resolveJsonModule": true,
// 3. JavaScript and Source Maps
"allowJs": true,
"sourceMap": true,
// 4. Interop and Imports
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
// 5. Type Checking and Strictness
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
// 6. Project Structure and Build Integrity
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}