mirror of https://gitee.com/antv-l7/antv-l7
31 lines
779 B
JSON
31 lines
779 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"noEmit": true,
|
||
|
"strict": true,
|
||
|
"strictPropertyInitialization": false,
|
||
|
"downlevelIteration": true,
|
||
|
"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": {
|
||
|
"@l7/*": ["packages/*/src"],
|
||
|
"*": ["node_modules", "packages"]
|
||
|
}
|
||
|
},
|
||
|
"awesomeTypescriptLoaderOptions": {
|
||
|
"useBabel": true,
|
||
|
"babelCore": "@babel/core",
|
||
|
"useCache": false
|
||
|
},
|
||
|
"include": ["packages"],
|
||
|
"exclude": ["node_modules", "packages/**/dist"],
|
||
|
}
|