mirror of
https://gitee.com/antv/g6.git
synced 2024-12-14 17:40:49 +08:00
26 lines
421 B
JavaScript
26 lines
421 B
JavaScript
module.exports = {
|
|
babelrc: {
|
|
plugins: [
|
|
'transform-object-rest-spread',
|
|
'transform-remove-strict-mode'
|
|
],
|
|
presets: [
|
|
[
|
|
'env',
|
|
{
|
|
'loose': true,
|
|
'modules': false
|
|
}
|
|
]
|
|
],
|
|
sourceMaps: 'inline'
|
|
},
|
|
extensions: ['.js'],
|
|
include: [
|
|
'node_modules/**/src/gl-matrix/**/*.js '
|
|
],
|
|
exclude: [
|
|
'bower_components/**/*.js',
|
|
]
|
|
}
|