forked from FranTadiello/Endpoints-parte-1
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
16 lines (16 loc) · 814 Bytes
/
tsconfig.json
File metadata and controls
16 lines (16 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions": {
"target": "es6", // Specify the ECMAScript target version
"module": "commonjs", // Specify the module system
"outDir": "./dist", // Specify the output directory for compiled files
"strict": false, // Enable strict type-checking
"esModuleInterop": true, // Enable interoperability between CommonJS and ES Modules
"resolveJsonModule": true, // Enable importing JSON files as modules
"baseUrl": "./src", // Specify the base directory for module resolution
"paths": {
"*": ["./types/*"] // Specify custom module resolution paths
}
},
"include": ["src/**/*.ts"], // Specify the files to be included in compilation
"exclude": ["node_modules"] // Specify the files to be excluded from compilation
}