diff --git a/scripts/generators/archived-libs-typings.js b/scripts/generators/archived-libs-typings.js index ab3c25860782..f21cac44ed59 100644 --- a/scripts/generators/archived-libs-typings.js +++ b/scripts/generators/archived-libs-typings.js @@ -1,5 +1,5 @@ import fs from "fs"; -import archivedSyntaxPkgs from "./archived-syntax-pkgs.json" with { "type": "json" }; +import archivedSyntaxPkgs from "./archived-syntax-pkgs.json" with { type: "json" }; const root = new URL("../..", import.meta.url); let output = `/* This file is automatically generated by scripts/generators/archived-libs-typings.js */ diff --git a/scripts/generators/tsconfig.js b/scripts/generators/tsconfig.js index f4c9fde7e649..12f30306691b 100644 --- a/scripts/generators/tsconfig.js +++ b/scripts/generators/tsconfig.js @@ -1,5 +1,5 @@ import fs from "fs"; -import archivedSyntaxPkgs from "./archived-syntax-pkgs.json" with { "type": "json" }; +import archivedSyntaxPkgs from "./archived-syntax-pkgs.json" with { type: "json" }; function importJSON(path) { return JSON.parse(fs.readFileSync(path)); diff --git a/scripts/rollup-plugin-standalone-internals.js b/scripts/rollup-plugin-standalone-internals.js index 913ec3184240..1b444177bea0 100644 --- a/scripts/rollup-plugin-standalone-internals.js +++ b/scripts/rollup-plugin-standalone-internals.js @@ -1,5 +1,5 @@ import { fileURLToPath } from "url"; -import pluginConfig from "../packages/babel-standalone/scripts/pluginConfig.json" with { "type": "json" }; +import pluginConfig from "../packages/babel-standalone/scripts/pluginConfig.json" with { type: "json" }; const standaloneURL = new URL("../packages/babel-standalone/", import.meta.url); const inStandalone = path =>