From dfed1a68acbd36c48306c933a803a0c3465f888e Mon Sep 17 00:00:00 2001 From: Johannes Ewald Date: Fri, 2 Aug 2024 12:20:06 +0200 Subject: [PATCH] chore: Change module and moduleResolution setting in tsconfig.json --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e86be78..36a39a3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,9 @@ "extends": ["@tsconfig/strictest"], "compilerOptions": { "outDir": "dist", - "lib": ["ESNext", "DOM"] + "lib": ["ESNext"], + "module": "NodeNext", + "moduleResolution": "NodeNext" }, "include": ["src"] } \ No newline at end of file