The below is the tsconfig.json file that comes by default when creating a plugin using kibana plugin generator.
What is this file for?
The below are the contents in the same.
{
"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" }
]
}