From 647f1355bdce39e2db7291cfed601bb49f2f60cb Mon Sep 17 00:00:00 2001 From: victor-0x29a Date: Fri, 12 Jul 2024 08:39:12 -0400 Subject: [PATCH] Fix: including the specs files inside of tsconfig --- tsconfig.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ffe4e79..93ea3c1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,11 @@ { "compilerOptions": { "esModuleInterop": true - } -} \ No newline at end of file + }, + "include": [ + "src/**/*.ts", + "src/**/*.d.ts", + "specs/*.ts", + "specs/**/*.*.spec.ts" + ], +}