tsconfig.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "outDir": "./dist/out-tsc",
  5. "sourceMap": true,
  6. "declaration": false,
  7. "moduleResolution": "node",
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "target": "es5",
  11. "typeRoots": [
  12. "node_modules/@types"
  13. ],
  14. "lib": [
  15. "es2017",
  16. "dom"
  17. ],
  18. "baseUrl": "src/",
  19. "paths": {
  20. "@shared/*": [
  21. "app/shared/*"
  22. ],
  23. "@services/*": [
  24. "app/services/*"
  25. ],
  26. "@core": [
  27. "app/core/"
  28. ],
  29. "@core/*": [
  30. "app/core/*"
  31. ],
  32. "@testing": [
  33. "testing/"
  34. ],
  35. "@testing/*": [
  36. "testing/*"
  37. ],
  38. "@env": [
  39. "environments/"
  40. ],
  41. "@env/*": [
  42. "environments/*"
  43. ],
  44. "@shared": [
  45. "app/shared/shared.module"
  46. ],
  47. "@components": [
  48. "app/components"
  49. ],
  50. "@models": [
  51. "app/models"
  52. ],
  53. "@tools": [
  54. "app/config/tools"
  55. ],
  56. "@global": [
  57. "app/services/global.service"
  58. ],
  59. "@config": [
  60. "app/config/config"
  61. ]
  62. }
  63. }
  64. }