2019-10-08 19:20:12 +08:00
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"noEmit": false,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"declaration": true,
|
|
|
|
"rootDir": "./",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2019-11-25 15:27:56 +08:00
|
|
|
"@antv/l7-*": ["packages/*/src"],
|
|
|
|
"@antv/l7": ["packages/l7/src"],
|
2019-10-08 19:20:12 +08:00
|
|
|
"*": ["node_modules", "packages"]
|
|
|
|
}
|
|
|
|
},
|
2019-11-25 15:27:56 +08:00
|
|
|
"exclude": ["**/*.story.*", "**/__tests__/**/*", "**/*.spec.*", "dist"],
|
2019-10-08 19:20:12 +08:00
|
|
|
"include": []
|
2019-10-29 17:33:37 +08:00
|
|
|
}
|