This question already has answers here:
Closed 10 months ago.
I looked at many posts but still cannot get this to work :(
I have .babelrc
{
"comments": false,
"presets": [
["@babel/env", {
"targets": {
"browsers": ["ios 7"]
}
}],
["minify"]
]
}
I want to tell babel to not add "use strict"
(anywhere)
How is this done ?