-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
15 lines (15 loc) · 927 Bytes
/
tsconfig.json
File metadata and controls
15 lines (15 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"compilerOptions": {
"target": "es2018", // Target ECMAScript version
"module": "CommonJS", // Specify module code generation
"outDir": "./dist", // Directory for compiled files
"rootDir": "./src", // Root directory of input files
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enable interoperation between CommonJS and ES modules
"forceConsistentCasingInFileNames": true, // Ensure consistent file naming
"skipLibCheck": true, // Skip type checking for declaration files
"sourceMap": true
},
"include": ["src/**/*"], // Files to include in the compilation
"exclude": ["node_modules", "dist"] // Files and folders to exclude
}