forked from visgl/loaders.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.build.json
68 lines (68 loc) · 1.83 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// 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/3d-tiles"},
{"path": "modules/arrow"},
{"path": "modules/bson"},
{"path": "modules/compression"},
{"path": "modules/core"},
{"path": "modules/crypto"},
{"path": "modules/csv"},
{"path": "modules/draco"},
{"path": "modules/excel"},
{"path": "modules/flatgeobuf"},
{"path": "modules/geopackage"},
{"path": "modules/geotiff"},
{"path": "modules/gis"},
{"path": "modules/gltf"},
{"path": "modules/i3s"},
{"path": "modules/images"},
{"path": "modules/json"},
{"path": "modules/kml"},
{"path": "modules/las"},
{"path": "modules/loader-utils"},
{"path": "modules/math"},
{"path": "modules/mvt"},
{"path": "modules/netcdf"},
{"path": "modules/obj"},
{"path": "modules/parquet"},
{"path": "modules/pcd"},
{"path": "modules/ply"},
{"path": "modules/polyfills"},
{"path": "modules/potree"},
{"path": "modules/schema"},
{"path": "modules/shapefile"},
{"path": "modules/terrain"},
{"path": "modules/textures"},
{"path": "modules/tile-converter"},
{"path": "modules/tiles"},
{"path": "modules/video"},
{"path": "modules/wkt"},
{"path": "modules/wms"},
{"path": "modules/worker-utils"},
{"path": "modules/xml"},
{"path": "modules/zarr"},
{"path": "modules/zip"}
],
"include": [
"modules/*/src"
],
"exclude": [
"modules/*/src/libs",
"modules/tile-converter",
"modules/textures/src/libs/basis_encoder.js",
"examples",
"test",
"scripts",
"modules/*/wip",
"modules/*/bin",
"modules/*/wip",
"modules/*/test",
"modules/*/dist"
]
}