Nuxt/packages/nuxt-legacy/rollup.config.js
Clark Du ea8c2a6505
feat: move build to packages (#4031)
* feat: move build to packages

* fix: remove build in eslint

* refactor: rename nuxt-build to nuxt-pack
2018-10-03 19:50:22 +01:00

20 lines
337 B
JavaScript

import babel from 'rollup-plugin-babel'
import config from '../nuxt-pack/rollup.config'
export default config({
rootDir: __dirname,
plugins: [
babel({
exclude: 'node_modules/**',
presets: [
[
'@babel/preset-env',
{
'modules': false
}
]
]
})
]
})