From 0c9d3f54cbdff44cedf67f0842240337bf180b5d Mon Sep 17 00:00:00 2001 From: Juanra GM Date: Sun, 24 Sep 2023 19:13:19 +0200 Subject: [PATCH] chore: fix tsconfig --- packages/create-suid/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/create-suid/tsconfig.json b/packages/create-suid/tsconfig.json index 875d3b106..b7551e13a 100644 --- a/packages/create-suid/tsconfig.json +++ b/packages/create-suid/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "target": "ESNext", - "module": "ESNext", + "target": "ES2022", + "module": "NodeNext", "moduleResolution": "NodeNext" }, "extends": "./../../tsconfig.json",