tsconfig.json 739 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "src/",
  5. "outDir": "./dist/out-tsc",
  6. "sourceMap": true,
  7. "declaration": false,
  8. "module": "es2015",
  9. "moduleResolution": "node",
  10. "emitDecoratorMetadata": true,
  11. "experimentalDecorators": true,
  12. "importHelpers": true,
  13. "target": "es5",
  14. "allowJs": true,
  15. "typeRoots": [
  16. "node_modules/@types"
  17. ],
  18. "lib": [
  19. "es2018",
  20. "dom"
  21. ],
  22. "paths": {
  23. "@shared": [
  24. "app/shared/index"
  25. ],
  26. "@shared/*": [
  27. "app/shared/*"
  28. ],
  29. "@core": [
  30. "app/core/index"
  31. ],
  32. "@core/*": [
  33. "app/core/*"
  34. ],
  35. "@env/*": [
  36. "environments/*"
  37. ]
  38. }
  39. }
  40. }