-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
22 lines (22 loc) · 1.23 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "es6", // Specify ECMAScript target version
"module": "commonjs", // Specify module code generation
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"], // Specify library files to be included in the compilation
"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 __importDefault interoperability between CommonJS and ES Modules
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file
"moduleResolution": "node", // Resolve modules using Node.js style
"skipLibCheck": true, // Skip type checking of declaration files
"resolveJsonModule": true // Include modules imported with .json extension
},
"include": [
"src/**/*" // Include all files in the src folder
],
"exclude": [
"node_modules", // Exclude the node_modules directory
"**/*.spec.ts" // Exclude test files
]
}