12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "compileOnSave": true,
- "compilerOptions": {
- "outDir": "./dist",
- "target": "es2017",
- "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"],
- "@services": ["./services"],
- "@utils/*": ["./utils/*"],
- "@config": ["./config"]
- }
- },
- "include": [
- "./src"
- ]
- }
|