From 83163febc688fde4203240de357b634fc51a2f8b Mon Sep 17 00:00:00 2001 From: barkstone2 Date: Mon, 16 Feb 2026 01:15:14 +0900 Subject: [PATCH] chore: narrow root TypeScript include scope --- tsconfig.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 85e9300..0ac9fa9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,6 +21,12 @@ "allowSyntheticDefaultImports": true, }, "include": [ - "**/*.ts" + "main.ts", + "src/**/*.ts" + ], + "exclude": [ + "react-app-internal/**", + "node_modules", + "main.js" ] }