@lightspeed/browserslist-config
v0.2.0
Published
Common Browserslist configuration for Lightspeed webapps
Downloads
847
Keywords
Readme
@lightspeed/browserslist-config
Introduction
Browserslist configuration in a convenient package.
We recommend to use a shared Babel configuration with a baked-in browserslist, such as that exposed in @lightspeed/config-next
.
Quick Start
- Install the dependency in your webapp.
yarn add -D @lightspeed/browserslist-config
- Consume the Browserslist configuration in
package.json
. Alternate query sources are described here.
"browserslist": [
"extends @lightspeed/browserslist-config"
]
- Optionally, extend the configuration as you see fit.
"browserslist": [
"extends @lightspeed/browserslist-config",
"ie <= 11"
]