-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 950 Bytes
/
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
{
"compilerOptions": {
"strict": false, // Disable strict type checking globally
"skipLibCheck": true, // Skip type checking for library files
"noImplicitAny": false, // Allow implicit 'any' types
"outDir": "./dist", // Output directory for compiled files
"rootDir": "./src", // Root directory for source files
"declaration": true, // Generate .d.ts type declaration files
"declarationMap": true, // Generate .d.ts.map files for debugging
"esModuleInterop": true, // Enable compatibility with CommonJS modules
"module": "commonjs", // CommonJS module system
"target": "es2017", // Set target to ES2017 to support Object.entries
"lib": [
"es2017",
"dom"
] // Include ES2017 libraries for compatibility
},
"include": [
"src/**/*.ts",
"dist/**/*"
],
"exclude": [
"node_modules",
"dist",
"src/generated" // Exclude generated files to avoid type-checking them
]
}