From 1e360085de91038032817cded6214e940697d9de Mon Sep 17 00:00:00 2001 From: Nick K Date: Fri, 29 Sep 2023 12:00:16 +0300 Subject: [PATCH] Set module in tsconfig to nodenext (was esnext) --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ab574f1..0b16f2a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,7 @@ "compilerOptions": { "baseUrl": "src", "target": "esnext", - "module": "esnext", + "module": "nodenext", "strict": true, "noImplicitAny": true, "moduleResolution": "nodenext",