diff --git a/packages/azure-kusto-data/test/clientTest.ts b/packages/azure-kusto-data/test/clientTest.ts index ef5e89d..7194b94 100644 --- a/packages/azure-kusto-data/test/clientTest.ts +++ b/packages/azure-kusto-data/test/clientTest.ts @@ -10,10 +10,10 @@ import { KustoClient } from "../src/client.js"; import { ClientRequestProperties } from "../src/clientRequestProperties.js"; import { KustoResponseDataSetV1, KustoResponseDataSetV2 } from "../src/response.js"; -import v2Response from "./data/response/v2.json" with { type: "json" }; -import v2ResponseError from "./data/response/v2error.json" with { type: "json" }; -import v1Response from "./data/response/v1.json" with { type: "json" }; -import v1_2Response from "./data/response/v1_2.json" with { type: "json" }; +import v2Response from "./data/response/v2.json"; +import v2ResponseError from "./data/response/v2error.json"; +import v1Response from "./data/response/v1.json"; +import v1_2Response from "./data/response/v1_2.json"; import { Readable } from "stream"; import ConnectionBuilder from "../src/connectionBuilder.js"; import { CloudSettings } from "../src/cloudSettings.js"; diff --git a/packages/azure-kusto-data/test/responseTest.ts b/packages/azure-kusto-data/test/responseTest.ts index ea977ac..2b003fb 100644 --- a/packages/azure-kusto-data/test/responseTest.ts +++ b/packages/azure-kusto-data/test/responseTest.ts @@ -3,7 +3,7 @@ import assert from "assert"; -import v2Response from "./data/response/v2.json" with { type: "json" }; +import v2Response from "./data/response/v2.json"; import { KustoResponseDataSetV2, V2Frames } from "../src/response.js"; describe("KustoResultDataSet", () => { diff --git a/packages/quick_start_browser/src/App.tsx b/packages/quick_start_browser/src/App.tsx index cb9b6c2..2d28b5b 100644 --- a/packages/quick_start_browser/src/App.tsx +++ b/packages/quick_start_browser/src/App.tsx @@ -12,7 +12,7 @@ import { IngestFlow } from "./IngestFlow"; import { QueryFlow } from "./QueryFlow"; import { ConfigJson, UpperFields } from "./UpperFields"; import logo from "./assets/download.png"; -import myJson from "./kusto_sample_config.json" with { type: "json" }; +import myJson from "./kusto_sample_config.json"; if (!window.Buffer) { window.Buffer = Buffer; }