chronograf/ui/.babelrc

25 lines
490 B
Plaintext
Raw Permalink Normal View History

{
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties",
"babel-plugin-lodash",
[
"babel-plugin-module-resolver",
{
"root": ["./src"],
"alias": {
"src": "./src",
"shared": "./src/shared",
"style": "./src/style",
"utils": "./src/utils"
}
2018-06-29 23:08:14 +00:00
}
]
],
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
2022-07-19 13:31:49 +00:00
]
}