-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
14 lines (14 loc) · 752 Bytes
/
tsconfig.json
File metadata and controls
14 lines (14 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"compilerOptions": {
"target": "es6", // Set the JavaScript version
"module": "commonjs", // Module system
"outDir": "./dist", // Output directory for compiled files
"rootDir": "./src", // Root directory of source files
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enable compatibility with ES modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true // Enforce consistent casing in file names
},
"include": ["src/**/*"], // Include all TypeScript files in src
"exclude": ["node_modules"] // Exclude node_modules
}