mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
20 lines
336 B
JavaScript
20 lines
336 B
JavaScript
import babel from 'rollup-plugin-babel'
|
|
import config from '../../build/rollup.config'
|
|
|
|
export default config({
|
|
rootDir: __dirname,
|
|
plugins: [
|
|
babel({
|
|
exclude: 'node_modules/**',
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
'modules': false
|
|
}
|
|
]
|
|
]
|
|
})
|
|
]
|
|
})
|