1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<img width="120" height="120" alt="Browserslist logo by Anton Popov"
The config to share target browsers and Node.js versions between different
front-end tools. It is used in:
- ------
All tools will find target browsers automatically,
when you add the following to `package.json`:
```json
"browserslist": [
]
```
Or in `.browserslistrc` config:
```yaml
defaults and fully supports es6-module
maintained node versions
```
Developers set their version lists using queries like `last 2 versions`
to be free from updating versions manually.
Browserslist will use [`caniuse-lite`] with [Can I Use] data for this queries.
You can check how config works at our playground: [`browsersl.ist`](https://browsersl.ist/)
Read full docs **[here](https://github.com/browserslist/browserslist#readme)**.