Is it possible to declare plugin options in the babel-cli --plugins argument? I can't find any mention or examples in the documentation.
Specifically I'm trying to translate the following from a .bashrc file (as described here) into a babel-cli --plugins argument:
...
"plugins": [
[
"babel-plugin-transform-require-ignore",
{
"extensions": [".css", ".sass", ".scss"]
}
]]
...
Any assistance is very much appreciated.