123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "compileOnSave": true,
- "compilerOptions": {
- "outDir": "./dist",
- "target": "ES2020",
- "lib": ["ES2020"],
- "module": "CommonJS",
- "strict": true,
- "noImplicitAny": false,
- "allowJs": true,
- "alwaysStrict": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "allowUnreachableCode": true,
- "allowUnusedLabels": true,
- "strictNullChecks": true,
- "checkJs": true,
- "declaration": false,
- "removeComments": true,
- "importHelpers": true,
- "moduleResolution": "node",
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "charset": "utf8",
- "pretty": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "inlineSourceMap": true,
- "skipLibCheck": true,
- "skipDefaultLibCheck": true,
- "esModuleInterop": true,
- "baseUrl": "./src",
- "paths": {
- "@/*": ["./*"],
-
- "@controllers": ["./controllers/index.ts"],
- "@services": ["./services/*"],
- "@utils/*": ["./utils/*"],
- "@config": ["./config.ts"]
- },
- "plugins": [
- { "transform": "typescript-transform-paths" }
- ]
- },
- "include": [
- "./src"
- ]
- }
|