tsconfig.app.json 544 B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "./out-tsc/app",
  5. "types": ["node"],
  6. "paths": {
  7. "hslayers-ng": [
  8. "./node_modules/hslayers-ng/src/public-api.ts"
  9. ]
  10. }
  11. },
  12. "files": [
  13. "src/main.ts",
  14. "src/polyfills.ts"
  15. ],
  16. "include": [
  17. "./**/*.d.ts",
  18. "./node_modules/hslayers-ng/src/**/*.ts"
  19. ],
  20. "exclude": [
  21. "./node_modules/hslayers-ng/src/**/*.spec.ts",
  22. "./node_modules/hslayers-ng/src/**/*.mock.ts",
  23. "./node_modules/hslayers-ng/src/testing-utils.ts"
  24. ]
  25. }