From 94fdbb790e5994ce5be841597a9699a40e146b76 Mon Sep 17 00:00:00 2001 From: Jonathan Neuteboom Date: Sun, 6 Oct 2024 17:53:47 +0200 Subject: [PATCH] Use es2022 as module --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index d911048..60c424e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,12 @@ { "compilerOptions": { - "module": "NodeNext", + "module": "ES2022", "outDir": "dist", "lib": ["es2019"], "strict": true, "target": "esnext", - "moduleResolution": "NodeNext", - "skipLibCheck": true + "skipLibCheck": true, + "moduleResolution": "bundler" }, "files": ["src/index.ts"] }