mirror of
https://gitee.com/antv/g6.git
synced 2024-12-05 05:09:07 +08:00
17 lines
274 B
JavaScript
17 lines
274 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
loose: true,
|
|
modules: false,
|
|
},
|
|
],
|
|
'@babel/preset-typescript',
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'@babel/plugin-transform-runtime',
|
|
],
|
|
};
|