susee-plugin-commonjs
v0.1.0
Published
A Susee plugin that transforms commonjs exports and imports into ES modules.
Readme
A Susee plugin that transforms commonjs exports and imports into ES modules.
Install
npm i -D susee-plugin-commonjsUse
In your susee.config.ts
import type { SuSeeConfig } from "susee";
import suseeCommonJS from "susee-plugin-commonjs";
export default {
entryPoints: [
{
entry: "src/index.ts",
format: ["esm"],
exportPath: ".",
},
],
plugins: [suseeCommonJS()],
} as SuSeeConfig;