#where to put loose config for ember-cli-babel
1 messages · Page 1 of 1 (latest)
let app = new EmberApp({
babel: {
// enable "loose" mode
loose: true,
// don't transpile generator functions
exclude: [
'transform-regenerator',
],
plugins: [
require.resolve('transform-object-rest-spread')
]
}
});
Under the Usage section
That's where I put it but was still getting that error so was thinking there's another place