6a9ffbcc
liuqimichale
地图点击事件
|
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
|
# babel-preset-es2015
> Babel preset for all es2015 plugins.
## Install
```sh
npm install --save-dev babel-preset-es2015
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"presets": ["es2015"]
}
```
### Via CLI
```sh
babel script.js --presets es2015
```
### Via Node API
```javascript
require("babel-core").transform("code", {
presets: ["es2015"]
});
```
## Options
### `loose`
`boolean`, defaults to `false`.
Enable "loose" transformations for any plugins in this preset that allow them.
### `modules`
`"amd" | "umd" | "systemjs" | "commonjs" | false`, defaults to `"commonjs"`.
Enable transformation of ES6 module syntax to another module type.
Setting this to `false` will not transform modules.
### `spec`
`boolean`, defaults to `false`.
Enable "spec" transformations for any plugins in this preset that allow them.
|