kibana/tsconfig.browser.json
Spencer 835ed85995
[6.x] [build/ts] transpile public code with webpack-specific ts config (#21865) (#21893)
Backports the following commits to 6.x:
 - [build/ts] transpile public code with webpack-specific ts config  (#21865)
2018-08-10 18:24:54 -07:00

14 lines
204 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "es5",
"module": "esnext",
},
"include": [
"src/**/public/**/*"
],
"exclude": [
"src/**/__fixtures__/**/*"
]
}