UNPKG

@webpack-contrib/defaults

Version:

Project configuration and boilerplate defaults for webpack projects

20 lines (17 loc) 289 B
const MIN_BABEL_VERSION = 7; module.exports = (api) => { api.assertVersion(MIN_BABEL_VERSION); api.cache(true); return { presets: [ [ '@babel/preset-env', { targets: { node: '10.13.0', }, }, ], ], }; };