The browserslist section in my package.json says:
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all"
]
}
I have a question here. I know , reads as or but how to read >0.2%? What does it mean? Also, if I want to know the IE versions and the browser it supports, how could I know this?