Skip to content

Commit 5f48e07

Browse files
committed
fix
1 parent e44d0f6 commit 5f48e07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/client/rollup.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import resolve from '@rollup/plugin-node-resolve';
22
import commonjs from '@rollup/plugin-commonjs';
33
import typescript from '@rollup/plugin-typescript';
44
import json from '@rollup/plugin-json';
5-
import pkg from './package.json';
5+
import pkg from './package.json' with { type: "json" };;
66
import terser from '@rollup/plugin-terser';
77

88
export default [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import resolve from '@rollup/plugin-node-resolve';
22
import commonjs from '@rollup/plugin-commonjs';
33
import typescript from '@rollup/plugin-typescript';
44
import json from '@rollup/plugin-json';
5-
import pkg from './package.json';
5+
import pkg from './package.json' with { type: "json" };;
66

77
export default [
88
// CommonJS (for Node) and ES module (for bundlers) build.

0 commit comments

Comments
 (0)