kibana/tsconfig.json

25 lines
693 B
JSON
Raw Normal View History

2018-02-21 10:09:30 +01:00
{
"extends": "./tsconfig.base.json",
2018-02-21 10:09:30 +01:00
"compilerOptions": {
"tsBuildInfoFile": "./build/tsbuildinfo/kibana",
2018-02-21 10:09:30 +01:00
},
"include": [
"kibana.d.ts",
"src/**/*",
"typings/**/*",
"test_utils/**/*"
],
"exclude": [
"src/**/__fixtures__/**/*",
"src/test_utils/**/*"
// In the build we actually exclude **/public/**/* from this config so that
// we can run the TSC on both this and the .browser version of this config
// file, but if we did it during development IDEs would not be able to find
// the tsconfig.json file for public files correctly.
// "src/**/public/**/*"
],
"references": [
{ "path": "./src/test_utils/tsconfig.json" }
2018-02-21 10:09:30 +01:00
]
}