-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy path.babelrc
More file actions
27 lines (27 loc) · 689 Bytes
/
.babelrc
File metadata and controls
27 lines (27 loc) · 689 Bytes
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
{
"presets": ["next/babel"],
"plugins": [
"transform-decorators-legacy",
["import", { "libraryName": "antd-mobile" }],
[
"transform-runtime",
{
"helpers": false,
"polyfill": true,
"regenerator": true,
"moduleName": "babel-runtime"
}
],
[
"module-resolver",
{
"alias": {
"@components": "./components/index.js",
"@utils": "./utils/index.js",
"@actions": "./store/actions/index.js",
"@reduxPage": "./store/reduxPage.js"
}
}
]
]
}