From 3e659ce872e2223eea370b9dd01ea432f6b8698d Mon Sep 17 00:00:00 2001 From: Pieter Robberechts Date: Sat, 7 Dec 2024 14:49:50 +0100 Subject: [PATCH] chore: fix deprecated import assertion --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 4dbd254..86de224 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,4 +1,4 @@ -import * as meta from "./package.json" assert { type: "json" }; +import * as meta from "./package.json" with { type: "json" }; // ------ JavaScript import { babel } from "@rollup/plugin-babel";