forked from ng-maps/ng-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
31 lines (31 loc) · 1.06 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2020",
"moduleResolution": "node",
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2020",
"lib": ["es2018", "dom"],
"paths": {
"@ng-maps/core": ["libs/core/src/public-api.ts"],
"@ng-maps/data-layer": ["libs/data-layer/src/public-api.ts"],
"@ng-maps/drawing-layer": ["libs/drawing-layer/src/public-api.ts"],
"@ng-maps/google": ["libs/google/src/public-api.ts"],
"@ng-maps/here": ["libs/here/src/public-api.ts"],
"@ng-maps/kml-layer": ["libs/kml-layer/src/public-api.ts"],
"@ng-maps/marker-clusterer": ["libs/marker-clusterer/src/public-api.ts"],
"@ng-maps/places": ["libs/places/src/public-api.ts"],
"@ng-maps/shapes": ["libs/shapes/src/public-api.ts"],
"@ng-maps/snazzy-info-window": [
"libs/snazzy-info-window/src/public-api.ts"
]
},
"rootDir": "."
},
"exclude": ["node_modules", "tmp"]
}