From 0169707c855f4e58a616df2662d9258d70984602 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Tue, 6 Feb 2024 05:24:52 -0800 Subject: [PATCH] chore: build API with esnext target (#6926) --- open-api/typescript-sdk/tsconfig.axios.json | 1 + open-api/typescript-sdk/tsconfig.fetch.json | 1 + 2 files changed, 2 insertions(+) diff --git a/open-api/typescript-sdk/tsconfig.axios.json b/open-api/typescript-sdk/tsconfig.axios.json index 77336203c1ace..9f0d06bbff2b1 100644 --- a/open-api/typescript-sdk/tsconfig.axios.json +++ b/open-api/typescript-sdk/tsconfig.axios.json @@ -1,6 +1,7 @@ { "include": ["axios.ts", "axios-client/**/*"], "compilerOptions": { + "target": "esnext", "strict": true, "skipLibCheck": true, "declaration": true, diff --git a/open-api/typescript-sdk/tsconfig.fetch.json b/open-api/typescript-sdk/tsconfig.fetch.json index c7dc6bfd50900..37c633ea10ec3 100644 --- a/open-api/typescript-sdk/tsconfig.fetch.json +++ b/open-api/typescript-sdk/tsconfig.fetch.json @@ -1,6 +1,7 @@ { "include": ["fetch.ts", "fetch-client/**/*"], "compilerOptions": { + "target": "esnext", "strict": true, "skipLibCheck": true, "declaration": true,