antv-l7/tsconfig.build.json

17 lines
351 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"emitDeclarationOnly": true,
"declaration": true,
"rootDir": "./",
"baseUrl": "./",
"paths": {
"@l7/*": ["packages/*/src"],
"*": ["node_modules", "packages"]
}
},
"exclude": ["**/*.story.*", "**/*.spec.*", "dist"],
"include": []
2019-10-29 17:33:37 +08:00
}