project-knedita/tsconfig.json

47 lines
923 B
JSON
Raw Normal View History

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