-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 1.16 KB
/
tsconfig.json
File metadata and controls
21 lines (21 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"target": "es6", // Compile to ES6
"module": "commonjs", // Use commonjs module system
"lib": ["es6", "DOM"], // Include the ES6 library
"outDir": "./dist", // Output to 'dist' folder
"rootDir": "./src", // Root directory is 'src'
"strict": true, // Enable all strict type-checking options
"moduleResolution": "node", // Module resolution strategy
"esModuleInterop": true, // Enables __importDefault helper
"skipLibCheck": true, // Skip type checking of all declaration files (*.d.ts)
"forceConsistentCasingInFileNames": true // Disallow inconsistently-cased references to the same file
},
"include": [
"src/**/*.ts" // Include all TypeScript files in src
, "config.ts" ],
"exclude": [
"node_modules", // Exclude the node_modules directory
"**/*.spec.ts" // Exclude test files
],
}