Last active
December 16, 2019 20:00
-
-
Save aeinbu/787b4836abb81e7ce7384f7405f18c5e 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": "commonjs"}] | |
], | |
"plugins": [ | |
["@babel/plugin-proposal-object-rest-spread", {}], | |
["@babel/plugin-proposal-class-properties", { "loose": false }], | |
["@babel/plugin-proposal-nullish-coalescing-operator"], | |
["@babel/plugin-proposal-optional-chaining"], | |
["@babel/plugin-proposal-pipeline-operator", { "proposal": "minimal" }] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment