plugin-html/babel.config.js
Miel Truyen 68eb2e3ea1
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
chore: fix puppeteer/chromium issues in CI during testing
2024-03-29 17:52:40 +01:00

16 lines
558 B
JavaScript

/** @type {import('@types/babel-core').TransformOptions} */
const babelConfig ={
presets: [
["@babel/preset-typescript", {
}],
],
plugins: [
],
ignore: [
// Not sure why our babel config is even triggered on this one
// jest testing was running into alot of: `[BABEL] Note: The code generator has deoptimised the styling of node_modules/.pnpm/rollup@4.13.2/node_modules/rollup/dist/es/shared/node-entry.js as it exceeds the max of 500KB.`
"./node_modules/.pnpm/rollup"
]
};
export default babelConfig;