tsconfig.app.json 509 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "../out-tsc/app",
  5. "baseUrl": "./",
  6. "module": "es2015",
  7. "types": [
  8. "node"
  9. ],
  10. "paths": {
  11. "@shared": [
  12. "app/shared/index"
  13. ],
  14. "@shared/*": [
  15. "app/shared/*"
  16. ],
  17. "@core": [
  18. "app/core/index"
  19. ],
  20. "@core/*": [
  21. "app/core/*"
  22. ],
  23. "@env/*": [
  24. "environments/*"
  25. ]
  26. }
  27. },
  28. "exclude": [
  29. "test.ts",
  30. "**/*.spec.ts"
  31. ]
  32. }