2023-06-23 18:15:11 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
/* Language and Environment */
|
2023-07-31 23:18:07 +00:00
|
|
|
"target": "es2016",
|
2023-06-23 18:15:11 +00:00
|
|
|
/* Modules */
|
2023-07-31 23:18:07 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"rootDir": "./",
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
|
|
|
"clients/*": [
|
|
|
|
"clients/*"
|
|
|
|
],
|
|
|
|
"config/*": [
|
|
|
|
"config/*"
|
|
|
|
],
|
|
|
|
"controllers/*": [
|
|
|
|
"controllers/*"
|
|
|
|
],
|
|
|
|
"interfaces/*": [
|
|
|
|
"interfaces/*"
|
|
|
|
],
|
|
|
|
"lib/*": [
|
|
|
|
"lib/*"
|
|
|
|
],
|
|
|
|
"middlewares/*": [
|
|
|
|
"middlewares/*"
|
|
|
|
],
|
|
|
|
"services/*": [
|
|
|
|
"services/*"
|
|
|
|
]
|
|
|
|
},
|
2023-06-23 18:15:11 +00:00
|
|
|
"typeRoots": [
|
2023-07-20 11:15:29 +00:00
|
|
|
"src/@types/express.d.ts",
|
|
|
|
"src/@types/global.d.ts",
|
2023-06-23 18:15:11 +00:00
|
|
|
"node_modules/@types"
|
2023-07-31 23:18:07 +00:00
|
|
|
],
|
2023-06-23 18:15:11 +00:00
|
|
|
/* Emit */
|
2023-07-31 23:18:07 +00:00
|
|
|
"outDir": "./dist",
|
|
|
|
"removeComments": true,
|
2023-06-23 18:15:11 +00:00
|
|
|
/* Interop Constraints */
|
2023-07-31 23:18:07 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2023-06-23 18:15:11 +00:00
|
|
|
/* Type Checking */
|
2023-07-31 23:18:07 +00:00
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true
|
2023-06-23 18:15:11 +00:00
|
|
|
}
|
|
|
|
}
|