From bc52f65b2648ff7987383537fc06c6a388d29ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Guti=C3=A9rrez=20Hermoso?= Date: Wed, 19 Jun 2024 14:27:43 -0400 Subject: [PATCH] tsconfig-ext: add /app, /test, and /stubs/app directories This is so that they get built and tested, as we'll start running tests on the ext/ directories from now on. --- tsconfig-ext.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig-ext.json b/tsconfig-ext.json index 814d5c36..cfa355ab 100644 --- a/tsconfig-ext.json +++ b/tsconfig-ext.json @@ -3,6 +3,9 @@ "files": [], "include": [], "references": [ + { "path": "./app" }, + { "path": "./stubs/app" }, + { "path": "./test" }, { "path": "./ext/app" } ], }