From eab44b397920a863be9eeaaa7d5d14125bd9bae2 Mon Sep 17 00:00:00 2001 From: Wojciech Maj Date: Wed, 9 Oct 2024 22:44:19 +0200 Subject: [PATCH] fix: replace import assertion with import attribute (#2342) --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index a09bb953c..dd94774d4 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,7 +1,7 @@ import { dirname, resolve } from 'path' import { fileURLToPath } from 'url' -import pkg from './package.json' assert { type: 'json' } +import pkg from './package.json' with { type: 'json' } import nodeResolve from '@rollup/plugin-node-resolve' import commonjs from '@rollup/plugin-commonjs'