rollup-plugin-jsonc
v0.1.1
Published
Convert .jsonc (json with comments) and .json files to ES6 modules.
Downloads
10
Readme
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-dev
Usage
import jsonc from "rollup-plugin-jsonc";
export default {
input: "src/index.js",
output: {
dir: "output",
format: "cjs",
},
plugins: [
jsonc(),
],
};