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"] }