You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows passing config options for specifying input/output folder rather than using command-line parameters (775067f)
module.exports={input: ['app/**/*.{js,jsx}',// Use ! to filter out files or directories'!app/**/*.spec.{js,jsx}','!app/i18n/**','!**/node_modules/**',],output: './',options: {},transform: {},};
Allows passing acorn options provided by acorn parser
trans: {acorn: {emcaVersion: 10,// defaults to 10sourceType: 'module',// defaults to 'module'// Check out https://github.com/acornjs/acorn/tree/master/acorn#interface for additional options}}