kibana/examples/hello_world/tsconfig.json
Stacey Gammon 0abf50bcbd
Clean up Developer Guide (#108259) (#108683)
* update plugin docs

* address code review feedback
# Conflicts:
#	dev_docs/tutorials/building_a_plugin.mdx
2021-08-16 10:56:07 -04:00

20 lines
390 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./target/types"
},
"include": [
"index.ts",
"common/**/*.ts",
"public/**/*.ts",
"public/**/*.tsx",
"server/**/*.ts",
"../../typings/**/*"
],
"exclude": [],
"references": [
{ "path": "../../src/core/tsconfig.json" },
{ "path": "../developer_examples/tsconfig.json" }
]
}