Skip to content

Instantly share code, notes, and snippets.

@dsacramone
Created June 7, 2020 04:54
Show Gist options
  • Save dsacramone/33de53d589e6315a4b88d33cc81b80e5 to your computer and use it in GitHub Desktop.
Save dsacramone/33de53d589e6315a4b88d33cc81b80e5 to your computer and use it in GitHub Desktop.
my current rollup config
import peerDepsExternal from "rollup-plugin-peer-deps-external";
import resolve from "rollup-plugin-node-resolve";
import typescript from "rollup-plugin-typescript2";
import sass from "rollup-plugin-sass";
import commonjs from "rollup-plugin-commonjs";
import copy from "rollup-plugin-copy";
import packageJson from "./package.json";
export default {
input: "src/index.ts",
output: [
{
file: packageJson.main,
format: "cjs",
sourcemap: true
},
{
file: packageJson.module,
format: "esm",
sourcemap: true
}
],
plugins: [
peerDepsExternal(),
resolve(),
commonjs(),
typescript({ useTsconfigDeclarationDir: true }),
sass({
insert: true
})
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment