mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
46 lines
No EOL
883 B
JSON
46 lines
No EOL
883 B
JSON
{
|
|
"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": [
|
|
"./src/@types",
|
|
"./node_modules/@types"
|
|
],
|
|
/* Emit */
|
|
"outDir": "./dist",
|
|
"removeComments": true,
|
|
/* Interop Constraints */
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
/* Type Checking */
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
}
|
|
} |