diff options
author | 2025-02-21 11:54:19 +0530 | |
---|---|---|
committer | 2025-02-21 18:25:47 +0530 | |
commit | c8d9b63d72ec6ce72d587eb0ac20ae4709a0222d (patch) | |
tree | 0e5e427de40254c5f9c42162a23f00b46fbfc4d5 /openecomp-ui/.babelrc | |
parent | 2cf0e33271373bb45e66f43d06be24b68ba2cbbf (diff) |
SDC component upliftment of janusgraph version1.14.1
- Janusgraph version update from 0.3.3 to 0.5.0
Issue-ID: SDC-4717
Change-Id: Ib7f7c7f0113a854e119ff7bd32ce5ec34da1692f
Signed-off-by: Anamika Khantwal <anamika.khantwal@accenture.com>
Diffstat (limited to 'openecomp-ui/.babelrc')
-rw-r--r-- | openecomp-ui/.babelrc | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/openecomp-ui/.babelrc b/openecomp-ui/.babelrc index 7949c034d8..7b8d637641 100644 --- a/openecomp-ui/.babelrc +++ b/openecomp-ui/.babelrc @@ -1,14 +1,29 @@ { - "presets": [["env", { - "targets": { - "browsers": ["last 2 versions", "Firefox >= 47"] - } - }], "react"], + "presets": [ + [ + "@babel/preset-env", + { + "targets": { + "browsers": [ + "last 2 versions", + "Firefox >= 47" + ] + } + } + ], + "@babel/preset-react" + ], "plugins": [ - "transform-object-rest-spread", - "transform-class-properties", - "transform-runtime", - "transform-decorators-legacy" + "@babel/plugin-proposal-object-rest-spread", + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime", + "@babel/plugin-transform-modules-commonjs", + [ + "@babel/plugin-proposal-decorators", + { + "legacy": true + } + ] ], "sourceMap": "inline" } |