Created
February 16, 2020 13:55
-
-
Save mohnatus/5a7dfaff1b3c15d33db84c1d3b8ee83b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "presets": [ | |
| [ | |
| "@babel/preset-env", | |
| { | |
| "modules": false, | |
| "loose": true, | |
| "useBuiltIns": "usage" | |
| } | |
| ] | |
| ], | |
| "plugins": [ | |
| "@babel/plugin-proposal-class-properties", | |
| "@babel/plugin-proposal-export-namespace-from", | |
| "@babel/plugin-syntax-export-default-from", | |
| "@babel/plugin-proposal-function-bind", | |
| "@babel/plugin-proposal-nullish-coalescing-operator", | |
| "@babel/plugin-proposal-numeric-separator", | |
| "@babel/plugin-proposal-optional-chaining", | |
| "@babel/plugin-syntax-dynamic-import", | |
| [ | |
| "@babel/plugin-transform-runtime", | |
| { | |
| "absoluteRuntime": false, | |
| "corejs": false, | |
| "helpers": true, | |
| "regenerator": true, | |
| "useESModules": false | |
| } | |
| ] | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm i -D @babel/preset-env @babel/plugin-proposal-class-properties @babel/plugin-proposal-export-namespace-from @babel/plugin-syntax-export-default-from @babel/plugin-proposal-function-bind @babel/plugin-proposal-nullish-coalescing-operator @babel/plugin-proposal-numeric-separator @babel/plugin-proposal-optional-chaining @babel/plugin-syntax-dynamic-import @babel/plugin-transform-runtime |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment