[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
This commit is contained in:
James Gowdy 2018-05-18 12:52:18 +01:00 committed by GitHub
parent e648269b95
commit 8b3052010f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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