forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.build.json
39 lines (39 loc) · 978 Bytes
/
tsconfig.build.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
// This is a base TS config for the individual packages, mainly for building .d.ts files
{
"extends": "./tsconfig.json",
"compilerOptions": {
// Uncomment to debug
"listEmittedFiles": true
},
"references": [
{"path": "modules/aggregation-layers"},
{"path": "modules/arcgis"},
{"path": "modules/carto"},
{"path": "modules/core"},
{"path": "modules/extensions"},
{"path": "modules/geo-layers"},
{"path": "modules/google-maps"},
{"path": "modules/json"},
{"path": "modules/jupyter-widget"},
{"path": "modules/layers"},
{"path": "modules/main"},
{"path": "modules/mapbox"},
{"path": "modules/mesh-layers"},
{"path": "modules/react"},
{"path": "modules/test-utils"}
],
"include": [
"modules/*/src"
],
"exclude": [
"modules/*/src/libs",
"examples",
"test",
"scripts",
"modules/*/wip",
"modules/*/bin",
"modules/*/wip",
"modules/*/test",
"modules/*/dist"
]
}