From e7b28a40bedb674066d7256c9d46f28d20bbdb8b Mon Sep 17 00:00:00 2001 From: "David L. Day" Date: Fri, 4 Oct 2024 22:30:40 -0400 Subject: [PATCH] build: add module as Node16 --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d86a35bd..f4b7c72d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,10 @@ { "compilerOptions": { + "module": "Node16", "target": "ES2020", "outDir": "out", "lib": ["ES2020"] , - "moduleResolution": "node", + "moduleResolution": "Node16", "sourceMap": true, // "rootDir": "src", "strict": true /* enable all strict type-checking options */,