tsconfig.json 767 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "module": "commonjs",
  5. "noImplicitAny": true,
  6. "removeComments": true,
  7. "preserveConstEnums": true,
  8. "sourceMap": true,
  9. "outDir": "build",
  10. "lib": ["es2018", "dom"],
  11. "esModuleInterop": true,
  12. "target": "es2018",
  13. "emitDecoratorMetadata": true,
  14. "experimentalDecorators": true,
  15. "baseUrl": ".",
  16. "paths": {
  17. "@shared/*": ["../shared/src/*"]
  18. },
  19. "strict": true
  20. },
  21. "references": [
  22. {
  23. "path": "../shared"
  24. }
  25. ],
  26. "include": [
  27. "src/**/*.ts",
  28. "src/**/*.js"
  29. ],
  30. "exclude": [
  31. "node_modules"
  32. ]
  33. }