forked from uber-web/math.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.14 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
{
"compilerOptions": {
"target": "esnext",
"jsx": "react",
"allowJs": true,
"checkJs": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@math.gl/core/*": ["modules/core/src/*"],
"@math.gl/core/test/*": ["modules/core/test/*"],
"@math.gl/culling/*": ["modules/culling/src/*"],
"@math.gl/culling/test/*": ["modules/culling/test/*"],
"@math.gl/geoid/*": ["modules/geoid/src/*"],
"@math.gl/geoid/test/*": ["modules/geoid/test/*"],
"@math.gl/geospatial/*": ["modules/geospatial/src/*"],
"@math.gl/geospatial/test/*": ["modules/geospatial/test/*"],
"@math.gl/sun/*": ["modules/sun/src/*"],
"@math.gl/sun/test/*": ["modules/sun/test/*"],
"@math.gl/web-mercator/*": ["modules/web-mercator/src/*"],
"@math.gl/web-mercator/test/*": ["modules/web-mercator/test/*"],
"test/*": ["test/*"]
}
},
"include":[
"modules/**/src/**/*",
"modules/**/test/**/*",
"test/**/*"
],
"exclude":[
"test/apps/**/*",
"node_modules",
"**/dist/**/*"
]
}