| 12345678910111213141516171819202122232425 |
- {
- "extends": "./tsconfig.json",
- "compilerOptions": {
- "outDir": "./out-tsc/app",
- "types": ["node"],
- "paths": {
- "hslayers-ng": [
- "./node_modules/hslayers-ng/src/public-api.ts"
- ]
- }
- },
- "files": [
- "src/main.ts",
- "src/polyfills.ts"
- ],
- "include": [
- "./**/*.d.ts",
- "./node_modules/hslayers-ng/src/**/*.ts"
- ],
- "exclude": [
- "./node_modules/hslayers-ng/src/**/*.spec.ts",
- "./node_modules/hslayers-ng/src/**/*.mock.ts",
- "./node_modules/hslayers-ng/src/testing-utils.ts"
- ]
- }
|