-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
14 lines (14 loc) · 896 Bytes
/
tsconfig.json
File metadata and controls
14 lines (14 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"compilerOptions": {
"target": "ES2020", // Specify ECMAScript target version
"module": "CommonJS", // Specify module code generation
"outDir": "./dist", // Redirect output structure to the directory
"rootDir": "./src", // Specify the root directory of input files
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enables emit interoperability for esModules
"allowSyntheticDefaultImports": true,
"skipLibCheck": true // Skip type checking of all declaration files (*.d.ts)
},
"include": ["src/**/*.ts"], // Include all TypeScript files in the src directory
"exclude": ["node_modules", "dist"] // Exclude these directories
}