0.2.0 • Published 5 years ago

@lightspeed/browserslist-config v0.2.0

Weekly downloads
937
License
MIT
Repository
-
Last release
5 years ago

@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

  1. Install the dependency in your webapp.
yarn add -D @lightspeed/browserslist-config
  1. Consume the Browserslist configuration in package.json. Alternate query sources are described here.
"browserslist": [
  "extends @lightspeed/browserslist-config"
]
  1. Optionally, extend the configuration as you see fit.
"browserslist": [
  "extends @lightspeed/browserslist-config",
  "ie <= 11"
]