0.1.1 • Published 5 years ago
rollup-plugin-jsonc v0.1.1
rollup-plugin-jsonc
Rollup plugin to support JSON and JSONC (json with comments) file types.
Why?
Because the rollup hall monitor said no :trollface:
Install
<pnpm|npm|yarn> i rollup-plugin-jsonc --save-devUsage
import jsonc from "rollup-plugin-jsonc";
export default {
  input: "src/index.js",
  output: {
    dir: "output",
    format: "cjs",
  },
  plugins: [
    jsonc(),
  ],
};