From 62016c1d2a7adb1fea5510dc674e644db3433add Mon Sep 17 00:00:00 2001 From: Britt Cyr Date: Wed, 24 Jan 2024 22:09:10 -0500 Subject: [PATCH 1/2] Use esnext for typescript modile and update the target --- typescript/phoenix-sdk/tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typescript/phoenix-sdk/tsconfig.json b/typescript/phoenix-sdk/tsconfig.json index ed0a30a..bf1101f 100644 --- a/typescript/phoenix-sdk/tsconfig.json +++ b/typescript/phoenix-sdk/tsconfig.json @@ -1,10 +1,10 @@ { "compilerOptions": { "baseUrl": "src", - "module": "commonjs", - "target": "es2015", - "esModuleInterop": true, + "module": "esnext", "moduleResolution": "node", + "target": "ES2020", + "esModuleInterop": true, "resolveJsonModule": true, "strict": true, "declaration": true, From 6e8aaef4d55d089c22601203475db40684646b20 Mon Sep 17 00:00:00 2001 From: Britt Cyr Date: Wed, 24 Jan 2024 22:09:25 -0500 Subject: [PATCH 2/2] Version bump --- typescript/phoenix-sdk/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/phoenix-sdk/package.json b/typescript/phoenix-sdk/package.json index cf98914..248a4cf 100644 --- a/typescript/phoenix-sdk/package.json +++ b/typescript/phoenix-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@ellipsis-labs/phoenix-sdk", - "version": "2.0.2", + "version": "2.0.3", "description": "TypeScript SDK for Phoenix", "author": "Ellipsis Labs", "repository": "https://github.com/Ellipsis-Labs/phoenix-sdk",