-
Notifications
You must be signed in to change notification settings - Fork 3
/
babel.config.js
33 lines (31 loc) · 1.2 KB
/
babel.config.js
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
// plugins 在 presets 前执行
module.exports = {
// plugins 加载顺序,数组从前往后
plugins: [
['@babel/plugin-proposal-decorators', { legacy: true }], // 修饰器支持,顺序必须在 `proposal-class-properties` 之前
['@babel/plugin-proposal-class-properties', { loose: true }], // 支持 `handleChange = () => {}` 语法
['@babel/plugin-proposal-private-property-in-object', { loose: true }],
'@babel/plugin-syntax-dynamic-import', // 支持 `() => import('./Home')` 语法
['@babel/plugin-proposal-private-methods', { loose: true }],
'babel-plugin-lodash', // 按需引入 lodash
[
'babel-plugin-import',
{ libraryName: 'antd', libraryDirectory: 'es', style: true },
'antd',
], // 按需加载 `antd` 组件, `style: true` 会加载 less 文件
],
// presets 加载顺序,数组从后往前
// 先执行 `react`, 然后执行 `env`
presets: [
['@babel/preset-env', { modules: false }],
'@babel/preset-typescript',
'@babel/preset-react',
],
// 覆盖规则,webpack 需要使用 commonjs 模块
overrides: [
{
test: ['./tools'],
presets: ['@babel/preset-env', '@babel/preset-typescript'],
},
],
};