2023-06-23 18:15:11 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-08-08 22:52:28 +00:00
|
|
|
"target": "ESNext",
|
2023-07-31 23:18:07 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"rootDir": "./",
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
2023-08-08 22:52:28 +00:00
|
|
|
"clients/*": ["clients/*"],
|
|
|
|
"config/*": ["config/*"],
|
|
|
|
"controllers/*": ["controllers/*"],
|
|
|
|
"interfaces/*": ["interfaces/*"],
|
|
|
|
"helpers/*": ["helpers/*"],
|
|
|
|
"middlewares/*": ["middlewares/*"],
|
|
|
|
"services/*": ["services/*"]
|
2023-07-31 23:18:07 +00:00
|
|
|
},
|
2023-09-30 20:15:19 +00:00
|
|
|
"typeRoots": ["./src/@types", "./node_modules/@types", "./node_modules/@types/minimist/index.d.ts"],
|
2023-07-31 23:18:07 +00:00
|
|
|
"outDir": "./dist",
|
|
|
|
"removeComments": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
2023-08-08 22:52:28 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"resolveJsonModule": true
|
2023-06-23 18:15:11 +00:00
|
|
|
}
|
2023-08-22 20:47:32 +00:00
|
|
|
}
|