mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
* [ML] Adding jsconfig file for better code navigation in vscode * removing allowSyntheticDefaultImports as it is defaulted to true * cleaning up paths
19 lines
300 B
JSON
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"
|
|
]
|
|
}
|