From 0d266cf873aa9855028da8e98396a0e59c21af5b Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Mon, 20 Apr 2026 14:04:03 +0200 Subject: [PATCH] chore(web): fix red squiggles in .ts test files in vscode VSCode shows red squiggles under things like `describe` or `it` in .ts test files for web. This change adds the types to the `tsconfig.json` file which fixes this problem. Build-bot: skip build:web Test-bot: skip --- web/src/test/auto/tsconfig.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/src/test/auto/tsconfig.json b/web/src/test/auto/tsconfig.json index ef780359c2e..3c4f46fb4c3 100644 --- a/web/src/test/auto/tsconfig.json +++ b/web/src/test/auto/tsconfig.json @@ -5,6 +5,11 @@ "outDir": "../../../build/test", "tsBuildInfoFile": "../../../build/test/tsconfig.tsbuildinfo", "rootDir": ".", + "types": [ + "mocha", + "chai", + "node" + ], }, "include": [