mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
25 lines
No EOL
669 B
JSON
25 lines
No EOL
669 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"rootDir": "./",
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"clients/*": ["clients/*"],
|
|
"config/*": ["config/*"],
|
|
"controllers/*": ["controllers/*"],
|
|
"interfaces/*": ["interfaces/*"],
|
|
"helpers/*": ["helpers/*"],
|
|
"middlewares/*": ["middlewares/*"],
|
|
"services/*": ["services/*"]
|
|
},
|
|
"typeRoots": ["./src/@types", "./node_modules/@types"],
|
|
"outDir": "./dist",
|
|
"removeComments": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
}
|
|
} |