-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
22 lines (22 loc) · 1.05 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "ES2021", // Target ECMAScript version
"lib": ["ES2021"], // Use ES2021 library (removed DOM for Node.js projects)
"outDir": "./dist", // Output compiled files here
"rootDir": "./src", // Specify where the source files are located
"baseUrl": "./src", // Base directory for module resolution
"module": "CommonJS", // For Node.js compatibility
"strict": true, // Enable strict type-checking options
"esModuleInterop": true, // Enable compatibility with CommonJS modules
"skipLibCheck": true, // Skip type checking of declaration files
"strictNullChecks": false, // Disable strict null checks
"moduleResolution": "node", // Use Node module resolution
"sourceMap": true, // Generate source maps for debugging
"paths": {
"@modules/*": ["modules/*"],
"@services/*": ["services/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}