Hello there ๐ ! I want to update my storybook/web-components version 6.3.12 -> 6.5.13 and getting the following error:
'loose' mode configuration must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled).
After updating babel.config.js to:
module.exports = {
plugins: [
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-class-properties', { loose: true }],
['@babel/plugin-proposal-private-methods', { loose: true }],
['@babel/plugin-proposal-private-property-in-object', { loose: true }]
],
presets: ['@babel/preset-env', '@babel/preset-react', '@babel/preset-typescript']
};
I get this one
Any ideas how to proceed?