-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 1003 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "ES6", // Specify your target ECMAScript version
"module": "CommonJS", // Specify the module system used by Node.js
"rootDir": "./src", // Source directory for your TypeScript files
"strict": true, // Enable strict type checking
"esModuleInterop": true, // Enable compatibility with ES modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true, // Enforce consistent file naming
"moduleResolution": "node", // Use Node.js module resolution strategy
"resolveJsonModule": true, // Enable importing JSON files
"declaration": true, // Generate declaration files (optional)
"sourceMap": true, // Generate source maps for debugging (optional)
"strictNullChecks": true,
"noImplicitAny": true
},
"include": ["src/**/*.ts"], // Specify the files to include in compilation
"exclude": ["node_modules", "dist"] // Specify files/folders to exclude from compilation
}