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"],
|
|
|
|
"types": ["reflect-metadata", "jest"],
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"rootDir": "./",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2019-11-25 15:27:56 +08:00
|
|
|
"@antv/l7-*": ["packages/*/src"],
|
|
|
|
"@antv/l7": ["packages/l7/src"],
|
|
|
|
"*": ["node_modules", "packages", "typings/*"]
|
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
|
|
|
}
|