forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
55 lines (54 loc) · 1.57 KB
/
tsconfig.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
{
"ts-node": {
"include": [
"modules",
"test/modules"
],
// It is faster to skip typechecking. Remove if you want ts-node to do typechecking.
"transpileOnly": true
},
"compilerOptions": {
"target": "es2022",
"module": "es2020",
"jsx": "react",
"strict": true,
"noImplicitAny": false,
"allowJs": true,
"checkJs": false,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@deck.gl/aggregation-layers": ["modules/aggregation-layers/src"],
"@deck.gl/arcgis": ["modules/arcgis/src"],
"@deck.gl/carto": ["modules/carto/src"],
"@deck.gl/core": ["modules/core/src"],
"@deck.gl/extensions": ["modules/extensions/src"],
"@deck.gl/geo-layers": ["modules/geo-layers/src"],
"@deck.gl/google-maps": ["modules/google-maps/src"],
"@deck.gl/json": ["modules/json/src"],
"@deck.gl/jupyter-widget": ["modules/jupyter-widget/src"],
"@deck.gl/layers": ["modules/layers/src"],
"deck.gl": ["modules/main/src"],
"@deck.gl/mapbox": ["modules/mapbox/src"],
"@deck.gl/mesh-layers": ["modules/mesh-layers/src"],
"@deck.gl/react": ["modules/react/src"],
"@deck.gl/test-utils": ["modules/test-utils/src"],
"deck.gl-test/*": ["test/*"]
},
"typeRoots" : ["./node_modules/@types"]
},
"include": [
"modules",
"test",
"examples"
],
"exclude": [
"**/node_modules",
"**/dist"
]
}