1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| {
| "presets": [
| "@babel/env"
| ],
| "plugins": [
| ["@babel/transform-for-of", { "loose": true }],
| ["@babel/plugin-syntax-import-assertions"]
| ],
| "env": {
| "es6": {
| "presets": [
| ["@babel/env", { "modules": false }]
| ]
| },
| "nyc": {
| "plugins": [
| "babel-plugin-istanbul"
| ]
| }
| }
| }
|
|