kibana/packages/kbn-plugin-generator/tsconfig.json
Kibana Machine a43ea4b1ff
chore(NA): moving @kbn/plugin-generator into bazel (#99646) (#99854)
* chore(NA): moving @kbn/plugin-generator into bazel

* chore(NA): add templates to build file

* chore(NA): restore plugins empty file

Co-authored-by: Tiago Costa <tiagoffcc@hotmail.com>
2021-05-11 19:58:31 -04:00

22 lines
413 B
JSON

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