58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
// Visit https://aka.ms/tsconfig to read more about this file
|
|
"compilerOptions": {
|
|
// File Layout
|
|
// "rootDir": "./src",
|
|
// "outDir": "./dist",
|
|
|
|
// Environment Settings
|
|
// See also https://aka.ms/tsconfig/module
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"target": "esnext",
|
|
"types": [],
|
|
"rootDir": "./src",
|
|
// For nodejs:
|
|
// "lib": ["esnext"],
|
|
// "types": ["node"],
|
|
// and npm install -D @types/node
|
|
|
|
// Other Outputs
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"declarationDir": "./dist",
|
|
|
|
// Stricter Typechecking Options
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
// Style Options
|
|
// "noImplicitReturns": true,
|
|
// "noImplicitOverride": true,
|
|
// "noUnusedLocals": true,
|
|
// "noUnusedParameters": true,
|
|
// "noFallthroughCasesInSwitch": true,
|
|
// "noPropertyAccessFromIndexSignature": true,
|
|
|
|
// Recommended Options
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"moduleDetection": "force",
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"paths": {
|
|
"@/*": ["src./*"],
|
|
"@BaseRequestDTO": ["src/scheduler/http/dto/base/base-request.dto.ts"],
|
|
"@BaseResponseDTO": ["src/scheduler/http/dto/base/base-response.dto.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "scripts"],
|
|
"exclude": ["node-modules", "dist", "**/*.spec.ts"]
|
|
}
|