tsconfig.json 742 B

1234567891011121314151617181920212223242526272829303132
  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. },
  20. "references": [
  21. {
  22. "path": "../shared"
  23. }
  24. ],
  25. "include": [
  26. "src/**/*.ts",
  27. "src/**/*.js"
  28. ],
  29. "exclude": [
  30. "node_modules"
  31. ]
  32. }