16 lines
558 B
JavaScript
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;
|