mirror of
https://gitee.com/antv/g6.git
synced 2024-12-15 01:51:00 +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',
|
||
|
]
|
||
|
}
|