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"],
|
2020-04-09 20:54:39 +08:00
|
|
|
"types": ["reflect-metadata", "jest", "node"],
|
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"],
|
2019-11-25 15:27:56 +08:00
|
|
|
"@antv/l7": ["packages/l7/src"],
|
2020-11-18 17:40:37 +08:00
|
|
|
"*": ["packages", "typings/*"]
|
2020-04-09 20:54:39 +08:00
|
|
|
},
|
2019-10-08 19:20:12 +08:00
|
|
|
},
|
|
|
|
"awesomeTypescriptLoaderOptions": {
|
|
|
|
"useBabel": true,
|
|
|
|
"babelCore": "@babel/core",
|
|
|
|
"useCache": false
|
|
|
|
},
|
|
|
|
"include": ["packages"],
|
2019-12-07 19:56:26 +08:00
|
|
|
"exclude": ["node_modules", "packages/**/dist"]
|
|
|
|
|
2019-12-07 01:43:18 +08:00
|
|
|
}
|