kibana/x-pack/plugins/ml/jsconfig.json
James Gowdy 8b3052010f
[ML] Adding jsconfig file for better code navigation in vscode (#19203)
* [ML] Adding jsconfig file for better code navigation in vscode

* removing allowSyntheticDefaultImports as it is defaulted to true

* cleaning up paths
2018-05-18 12:52:18 +01:00

19 lines
300 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"baseUrl": "../../../.",
"paths": {
"ui/*": [
"src/ui/public/*"
],
"plugins/ml/*": [
"x-pack/plugins/ml/public/*"
]
}
},
"exclude": [
"node_modules",
"build"
]
}