From b537a9299dd9f8758b6d322a974507acb7a3c4cc Mon Sep 17 00:00:00 2001 From: Juliusz Chroboczek Date: Sat, 4 Jan 2025 01:12:56 +0100 Subject: [PATCH] Fix tsconfig to ignore node types. --- static/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/tsconfig.json b/static/tsconfig.json index b329ede..ab5a4d8 100644 --- a/static/tsconfig.json +++ b/static/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { - "target": "ES6", + "target": "es6", + "types": [], "allowJs": true, "checkJs": true, "declaration": true,