tsconfig.app.json 485 B

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