From 70cd0da749d9f126724dd37bd05c82568979fcdc Mon Sep 17 00:00:00 2001 From: Kolezhniuk Date: Thu, 7 Nov 2024 13:34:40 +0100 Subject: [PATCH] Fix build --- rollup.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rollup.config.mjs b/rollup.config.mjs index 0bb6f898..604261ec 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,8 +1,8 @@ import commonJS from '@rollup/plugin-commonjs'; import { nodeResolve } from '@rollup/plugin-node-resolve'; import typescript from '@rollup/plugin-typescript'; -import packageJson from './package.json' assert { type: 'json' }; -import tsConfig from './tsconfig.json' assert { type: 'json' }; +import packageJson from './package.json' with { type: 'json' }; +import tsConfig from './tsconfig.json' with { type: 'json' }; import virtual from '@rollup/plugin-virtual'; import json from '@rollup/plugin-json'; const empty = 'export default {}';