tsconfig.json 371 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "paths": {
  5. "@/*": [
  6. "src/*"
  7. ]
  8. },
  9. "module": "commonjs",
  10. "target": "es2017",
  11. "noImplicitAny": true,
  12. "outDir": "./dist",
  13. "sourceMap": true,
  14. "esModuleInterop": true,
  15. "emitDecoratorMetadata": true,
  16. "experimentalDecorators": true
  17. },
  18. "include": [
  19. "src/**/*"
  20. ]
  21. }