| { | |
| "compilerOptions": { | |
| "target": "ES2020", | |
| "module": "CommonJS", | |
| "rootDir": "./src", | |
| "outDir": "./dist", | |
| "esModuleInterop": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "strict": true, | |
| "skipLibCheck": true, | |
| "resolveJsonModule": true, | |
| "moduleResolution": "node", | |
| "baseUrl": "./src", | |
| "paths": { | |
| "@modules/*": [ | |
| "modules/*" | |
| ], | |
| "@shared/*": [ | |
| "shared/*" | |
| ], | |
| "@types/*": [ | |
| "types/*" | |
| ], | |
| "@config/*": [ | |
| "config/*" | |
| ] | |
| } | |
| }, | |
| "include": [ | |
| "src/**/*.ts", | |
| "src/**/*.d.ts" | |
| ], | |
| "exclude": [ | |
| "node_modules", | |
| "dist" | |
| ], | |
| "ts-node": { | |
| "files": true | |
| } | |
| } |