-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 1.02 KB
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"module": "ESNext", // Module code generation (CommonJS, ESNext, etc.)
"target": "ESNext", // Defines the ECMAScript target version (e.g., ES5, ES6/ES2015, etc.)
"types": ["node", "jest"],
"esModuleInterop": true, // Allows default import from modules without default export
"allowJs": true,
"strict": true, // Enables strict type-checking options
"skipLibCheck": true, // Skips type checking of declaration files
"forceConsistentCasingInFileNames": true, // Ensures file name casing consistency
"outDir": "./dist", // Output directory for compiled files
"baseUrl": "./", // Base directory for resolving non-relative module names
"noImplicitAny": true, // Disallows usage of `any` type without explicit declaration
"moduleResolution": "node", // Module resolution strategy (node, classic)
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": [
"node_modules", // Exclude the `node_modules` directory
"dist" // Exclude the output directory
]
}