kibana/packages/kbn-plugin-generator/tsconfig.json
Tiago Costa df112dd880
chore(NA): moving @kbn/plugin-generator to babel transpiler (#109083)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-08-19 12:27:42 +01:00

23 lines
428 B
JSON

{
"extends": "../../tsconfig.bazel.json",
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"outDir": "target_types",
"sourceMap": true,
"sourceRoot": "../../../../packages/kbn-plugin-generator/src",
"target": "ES2019",
"types": [
"jest",
"node"
]
},
"include": [
"src/**/*"
],
"exclude": [
"src/template/*"
],
}