-
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) · 780 Bytes
/
Copy pathtsconfig.json
File metadata and controls
14 lines (14 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"compilerOptions": {
"target": "ESNext", // Target JavaScript version
"module": "CommonJS", // Module system for Node.js
"strict": true, // Enable strict type-checking options
"esModuleInterop": true, // Enable interop between CommonJS and ES Modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true, // Enforce consistent casing in file names
"outDir": "./dist", // Output directory for compiled files
"rootDir": "./" // Root directory of TypeScript files
},
"include": ["src/**/*.ts", "index.ts"], // Files to include
"exclude": ["node_modules", "dist"] // Files to exclude
}