-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
51 lines (50 loc) · 1.58 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
{
"compilerOptions": {
"noEmit": true,
"strict": true,
"strictPropertyInitialization": false,
"downlevelIteration": true,
"jsx": "react",
"target": "es5",
"lib": ["es6", "dom","es2019"],
"types": ["reflect-metadata", "jest", "node","offscreencanvas"],
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"rootDir": "./",
"baseUrl": "./",
"paths": {
"@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/lib/map": ["packages/maps/src/map"],
"@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-mini": ["packages/mini/src"],
"@antv/l7-utils": ["packages/utils/src"],
"@antv/l7-test-utils":["packages/test-utils/src"],
"@antv/l7": ["packages/l7/src"],
"@antv/l7-leaflet": ["packages/leaflet/src"],
"*": ["packages", "typings/*"]
}
},
"ts-node": {
"experimentalSpecifierResolution": "node",
"esm": true,
"compilerOptions": {
"target": "es2019",
"types": [
"node"
]
}
},
"include": ["packages"],
"exclude": ["node_modules", "packages/**/dist","packages/site","packages/leaflet/**",]
}