tsconfig.spec.json 525 B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "../out-tsc/spec",
  5. "baseUrl": "./",
  6. "module": "commonjs",
  7. "target": "es5",
  8. "types": [
  9. "jasmine",
  10. "node"
  11. ],
  12. "paths": {
  13. "@shared": [ "app/shared/index" ],
  14. "@shared/*": [ "app/shared/*" ],
  15. "@core": [ "app/core/index" ],
  16. "@core/*": [ "app/core/*" ],
  17. "@env/*": [ "environments/*" ]
  18. }
  19. },
  20. "files": [ "test.ts", "polyfills.ts" ],
  21. "include": [
  22. "**/*.spec.ts",
  23. "**/*.d.ts"
  24. ]
  25. }