From 09645c30e61131ba20a3c6b2b594337a4e4feb33 Mon Sep 17 00:00:00 2001 From: Alix von Schirp Date: Thu, 13 Mar 2025 02:45:11 +0100 Subject: [PATCH] build(tsconfig): specify include globs to /src/**/* Previous glob was `**/*` Format: text/markdown Milestone: none --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9ed2a61..fb41ac3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -27,6 +27,6 @@ "~/*": ["./src/*"] } }, - "include": ["**/*.ts", "**/*.tsx", "**/*.cjs", "**/*.js"], - "exclude": ["node_modules", "docs", "dist"] + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.cjs", "src/**/*.js"], + "exclude": ["node_modules/**/*", "docs/**/*", "dist/**/*"] }