From f358fd8b847c05c28abd6c54039e6ba4c05b21a4 Mon Sep 17 00:00:00 2001 From: ch1ka <164895536+ch1kulya@users.noreply.github.com> Date: Thu, 2 Apr 2026 01:35:57 +0300 Subject: [PATCH] fix: add include to tsconfig.json so tsc compiles source files --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 532797b..79ec7d4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -35,5 +35,6 @@ /* Completeness */ "skipDefaultLibCheck": true /* Skip type checking .d.ts files that are included with TypeScript. */, "skipLibCheck": true /* Skip type checking all .d.ts files. */ - } + }, + "include": ["src"] }