From 79e617a203773a43d8a1b8090c4b63ba556f8293 Mon Sep 17 00:00:00 2001 From: VitroidFPV <76877124+VitroidFPV@users.noreply.github.com> Date: Sun, 8 Dec 2024 15:29:01 +0100 Subject: [PATCH] Fix: specify Node16 to module option --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 57bbce401d..a8303a8bc9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "@tsconfig/docusaurus/tsconfig.json", "compilerOptions": { - "baseUrl": "." + "baseUrl": ".", + "module": "Node16" } }