From 942d0559e07d0c456c08f9f96a6ba3f990978735 Mon Sep 17 00:00:00 2001 From: Stephan Schreiber Date: Sat, 3 Jun 2023 01:00:55 +0200 Subject: [PATCH] Fix tsconfig's module setting --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e0d89a9..6d897a5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,12 +16,12 @@ // Output "outDir": "dist", "target": "ESNext", - "module": "ESNext", + "module": "Node16", "declaration": true, "declarationMap": true, "sourceMap": true, - // Type checkings + // Type checking "strict": true, "noImplicitReturns": true, "noUnusedLocals": false,