Skip to content
This repository has been archived by the owner on Dec 11, 2021. It is now read-only.

Latest commit

 

History

History
23 lines (18 loc) · 330 Bytes

browserslist.md

File metadata and controls

23 lines (18 loc) · 330 Bytes

Browserslist

Browserslist can be configured via .btowserslistrc:

# Browsers that we support

defaults
not IE 11
maintained node versions

or inside of package.json:

{
  "browserslist": [
    "defaults",
    "not IE 11",
    "maintained node versions"
  ]
}