We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e17b5 commit 4898aceCopy full SHA for 4898ace
1 file changed
src/rollup-config.ts
@@ -3,6 +3,7 @@ import nodeResolve from "@rollup/plugin-node-resolve";
3
import babel from "@rollup/plugin-babel";
4
import commonjs from "@rollup/plugin-commonjs";
5
import terser from "@rollup/plugin-terser";
6
+import json from "@rollup/plugin-json";
7
import path from "path";
8
import { pktsDir } from "./util";
9
@@ -17,6 +18,7 @@ export default {
17
18
typescript(),
19
nodeResolve(),
20
commonjs(),
21
+ json(),
22
babel({
23
babelHelpers: "inline",
24
extensions: [".ts", ".js"],
0 commit comments