1
0

tsconfig.json 482 B

123456789101112131415161718192021
  1. {
  2. "ts-node": {
  3. "files": true
  4. },
  5. "compilerOptions": {
  6. "target": "ES2020",
  7. "module": "commonjs",
  8. "lib": ["ES2020"],
  9. "strict": true,
  10. "strictPropertyInitialization": false,
  11. "esModuleInterop": true,
  12. "skipLibCheck": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "outDir": "./dist",
  15. "rootDir": "./src",
  16. "emitDecoratorMetadata": true,
  17. "experimentalDecorators": true
  18. },
  19. "include": ["src/**/*"],
  20. "exclude": ["node_modules"]
  21. }