-
Notifications
You must be signed in to change notification settings - Fork 636
/
tsconfig.json
47 lines (41 loc) · 1.3 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
{
"compilerOptions": {
// Language and Environment Config
"target": "es6",
"jsx": "react",
"experimentalDecorators": true,
// Type Checking Config
"strict": true,
"strictPropertyInitialization": false, // @todo: turning on for next refactor
// Emit Config
"declaration": true,
"importHelpers": true,
"downlevelIteration": true,
// Modules Config
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"baseUrl": "./",
"rootDir": "./",
"paths": {
"@antv/l7": ["packages/l7/src"],
"@antv/l7-core": ["packages/core/src"],
"@antv/l7-component": ["packages/component/src"],
"@antv/l7-layers": ["packages/layers/src"],
"@antv/l7-map": ["packages/map/src"],
"@antv/l7-maps": ["packages/maps/src"],
"@antv/l7-scene": ["packages/scene/src"],
"@antv/l7-renderer": ["packages/renderer/src"],
"@antv/l7-three": ["packages/three/src"],
"@antv/l7-source": ["packages/source/src"],
"@antv/l7-utils": ["packages/utils/src"],
"@antv/l7-test-utils": ["packages/test-utils/src"]
},
// Interop Constraints
"esModuleInterop": true,
"isolatedModules": true,
// Completeness
"skipLibCheck": true
},
"exclude": ["node_modules", "dist", "es", "lib"]
}