-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
17 lines (17 loc) · 1019 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"target": "ES2017", // JavaScript version to compile to
"module": "ES6", // Module system to use (ES6 modules)
"declaration": true, // Generate .d.ts declaration files
"outDir": "dist", // Output directory for compiled files
"strict": true, // Enable all strict type-checking options
"sourceMap": true, // Generate source maps
"moduleResolution": "node", // Module resolution strategy
"esModuleInterop": true, // Enables compatibility with CommonJS modules
"forceConsistentCasingInFileNames": true, // Disallow inconsistently cased references
"skipLibCheck": true, // Skip type checking of declaration files
"importHelpers": true,
"sourceRoot": "./" // Set the root path for source maps
},
"include": ["src/**/*"] // Include all TypeScript files in the src directory
}