glimmer-experimental icon indicating copy to clipboard operation
glimmer-experimental copied to clipboard

new glimmer project doesn't build with default babel rc

Open christophermlne opened this issue 3 years ago • 0 comments

The app does build if i make the change as noted below:

.babelrc.js:

module.exports = function (api) {
  api.cache(true); // i had to add this line

  return {
    presets: ['@glimmer/babel-preset', '@babel/preset-env', '@babel/preset-typescript'],
  };
};

christophermlne avatar Dec 14 '21 15:12 christophermlne