From d7db8e4588c8a7d766d53ae04fd189bff49d72c8 Mon Sep 17 00:00:00 2001 From: 0xKermini <67284748+lukebaze@users.noreply.github.com> Date: Tue, 31 Mar 2026 10:37:56 +0700 Subject: [PATCH] refactor: include .d.ts files in published package The .npmignore file is currently excluding .d.ts TypeScript declaration files from the published npm package. This prevents library consumers from getting proper TypeScript type definitions when using vsce as a library. We need to modify the ignore patterns to explicitly include .d.ts files while still excluding other unnecessary files. Affected files: .npmignore Signed-off-by: 0xKermini <67284748+lukebaze@users.noreply.github.com> --- .npmignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.npmignore b/.npmignore index 9ad14502..35b4883c 100644 --- a/.npmignore +++ b/.npmignore @@ -3,7 +3,6 @@ build/ src/ out/test/ -out/**/*.d.ts .dockerignore .gitignore Dockerfile