I am using jest to test my react App. While running the test for one component which uses node_modules@microsoft\mgt-react which is a typescript module, I am getting the below error.
export * from './Mgt';
^^^^^^
SyntaxError: Unexpected token 'export'
I tried adding transformIgnorePatterns, but it is not working.
my babel.config.js looks like this.
module.exports = {
presets: ["@babel/preset-env", "@babel/preset-react"],
plugins: ["@babel/plugin-transform-react-jsx"],
};