From 5a422f3641d96f0ae3d84e1ad73f7c0926476842 Mon Sep 17 00:00:00 2001 From: Mattias Buelens Date: Mon, 16 Oct 2023 17:08:10 +0200 Subject: [PATCH] Fix tsconfig --- tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 80e473a..be4ac83 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,10 @@ { "compilerOptions": { - "target": "esnext", + "target": "es2022", "useDefineForClassFields": true, - "module": "esnext", - "lib": ["esnext", "dom"], - "moduleResolution": "node", + "module": "es2022", + "lib": ["es2022", "dom"], + "moduleResolution": "bundler", "strict": true, "sourceMap": true, "resolveJsonModule": true,