From 1ccf534e04bfce12d5fe471b84996821ddb244f5 Mon Sep 17 00:00:00 2001 From: chatenium Date: Wed, 8 Apr 2026 16:48:11 +0200 Subject: [PATCH] Quick-fix --- package.json | 2 +- tsconfig.json | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index fd8d6a1..4196303 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@chatenium/chatenium-sdk", - "version": "1.0.3", + "version": "1.0.4", "description": "A library for interacting with the Chatenium API", "type": "module", "main": "dist/index.js", diff --git a/tsconfig.json b/tsconfig.json index 00194d0..d21d071 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,15 @@ { "compilerOptions": { "target": "es2016", - "module": "commonjs", + "module": "NodeNext", + "moduleResolution": "NodeNext", "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "declaration": true, "strict": true, "skipLibCheck": true, - "outDir": "dist" + "outDir": "dist", + "verbatimModuleSyntax": false, }, "include": ["src"] }