-
Notifications
You must be signed in to change notification settings - Fork 56
/
tsconfig.modules.json
41 lines (41 loc) · 1.04 KB
/
tsconfig.modules.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
32
33
34
35
36
37
38
39
40
41
// This is the monorepo build config
// needs to be a separate file to avoid importing references into packages
{
"extends": "./tsconfig.json",
"compilerOptions": {
"build": true,
"module": "ES2020",
"esModuleInterop": true,
"declaration": true,
// Source map for declarations... not currently needed
// "declarationMap": true,
"noEmit": true,
// "emitDeclarationOnly": true,
// Uncomment to debug
"listEmittedFiles": true
},
// Monorepo setup. All modules need to be listed here
"references": [
{"path": "modules/core"},
{"path": "modules/culling"},
{"path": "modules/geohash"},
{"path": "modules/geoid"},
{"path": "modules/geospatial"},
{"path": "modules/main"},
{"path": "modules/polygon"},
{"path": "modules/proj4"},
{"path": "modules/s2"},
{"path": "modules/sun"},
{"path": "modules/quadkey"},
{"path": "modules/web-mercator"}
],
"include": [
"modules"
],
"exclude": [
"examples",
"test",
"modules/*/test",
"modules/*/dist"
]
}