From ee7776b9e1e1fcf2d9ad4dd6927c4cd2706f1dd8 Mon Sep 17 00:00:00 2001 From: Rasmus Schultz Date: Sun, 4 Jan 2026 12:48:46 +0100 Subject: [PATCH] Add 'test' directory to TypeScript include paths In order for VS Code to pick up `tsconfig.json`, I believe `tests` needs to be listed here? I couldn't seem to get VS Code to pick up `tsconfig.json` any other way. --- scripts/newPlugin.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/newPlugin.ts b/scripts/newPlugin.ts index fd83203..d198068 100644 --- a/scripts/newPlugin.ts +++ b/scripts/newPlugin.ts @@ -131,7 +131,10 @@ async function main() { outDir: "dist", skipLibCheck: true, }, - include: ["src"], + include: [ + "src", + "test", + ], }, null, 2,