-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
17 lines (17 loc) · 867 Bytes
/
tsconfig.json
File metadata and controls
17 lines (17 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"target": "ES2020", // Specify ECMAScript target version
"module": "commonjs", // Specify module code generation
"rootDir": "./src", // Specify the root directory of input files
"outDir": "./dist", // Redirect output structure to the directory
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enable esModuleInterop
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file
"moduleResolution": "node", // Use Node.js module resolution strategy
"resolveJsonModule": true, // Include modules imported with .json extension
"sourceMap": true // Generate corresponding .map files
},
"include": ["src"],
"exclude": ["node_modules", "**/*.spec.ts"]
}