2019-10-08 19:20:12 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictPropertyInitialization": false,
|
2019-10-24 10:38:11 +08:00
|
|
|
"downlevelIteration": true,
|
2019-10-08 19:20:12 +08:00
|
|
|
"jsx": "react",
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["es6", "dom"],
|
2022-08-11 11:18:07 +08:00
|
|
|
"types": ["reflect-metadata", "jest", "node","offscreencanvas"],
|
2019-10-08 19:20:12 +08:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"rootDir": "./",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2020-10-08 23:24:08 +08:00
|
|
|
"@antv/l7-core": ["packages/core/src"],
|
|
|
|
"@antv/l7-component": ["packages/component/src"],
|
|
|
|
"@antv/l7-layers": ["packages/layers/src"],
|
|
|
|
"@antv/l7-map": ["packages/map/src"],
|
2021-11-08 19:51:38 +08:00
|
|
|
"@antv/l7-maps/lib/map": ["packages/maps/src/map"],
|
2020-10-08 23:24:08 +08:00
|
|
|
"@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"],
|
2022-08-18 10:19:12 +08:00
|
|
|
"@antv/l7-test-utils":["packages/test-utils/src"],
|
2019-11-25 15:27:56 +08:00
|
|
|
"@antv/l7": ["packages/l7/src"],
|
2022-09-13 11:25:25 +08:00
|
|
|
"@antv/l7-leaflet": ["packages/leaflet/src"],
|
2020-11-18 17:40:37 +08:00
|
|
|
"*": ["packages", "typings/*"]
|
2022-08-02 19:05:27 +08:00
|
|
|
}
|
2019-10-08 19:20:12 +08:00
|
|
|
},
|
|
|
|
"include": ["packages"],
|
2022-09-02 23:08:45 +08:00
|
|
|
"exclude": ["node_modules", "packages/**/dist","packages/site","packages/leaflet/**",]
|
2022-08-08 16:41:30 +08:00
|
|
|
|
2019-12-07 01:43:18 +08:00
|
|
|
}
|