From 020ff59ecff07ea5ae4413f575de398455224f72 Mon Sep 17 00:00:00 2001 From: Stephen Li Date: Sun, 23 Jun 2024 22:14:58 -0400 Subject: [PATCH] Expand tsconfig exclude/include to be more robust --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ec017be..2c943fc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -36,13 +36,13 @@ }, }, "exclude": [ - "**/raw/**/*", + "**/dist*", + "**/raw", "**/*.html", "node_modules", - "dist", ], "include": [ "**/*", - "eslint.config.mjs", + "eslint.config.*js", ], }