mirror of
https://github.com/alibaba/GCanvas.git
synced 2026-01-25 14:08:42 +00:00
14 lines
221 B
JavaScript
14 lines
221 B
JavaScript
import babel from 'rollup-plugin-babel';
|
|
|
|
module.exports = {
|
|
input: 'src/index.js',
|
|
output: {
|
|
file: 'dist/gcanvas.js',
|
|
format: 'cjs'
|
|
},
|
|
plugins: [
|
|
babel({
|
|
exclude: 'node_modules/**'
|
|
})
|
|
]
|
|
}; |