Converted @rollup/html to a standalone package (out of the original monorepo) and made it ESM-native

This commit is contained in:
2023-04-17 21:04:05 +02:00
commit 2dc701c5b7
21 changed files with 4923 additions and 0 deletions

12
babel.config.js Normal file
View File

@@ -0,0 +1,12 @@
console.log("Do i get called");
/** @type {import('@types/babel-core').TransformOptions} */
const babelConfig ={
presets: [
["@babel/preset-typescript", {
}],
],
plugins: [
],
};
export default babelConfig;