From 20a466c58dc5aadd081d84aefaaf14e8e493c171 Mon Sep 17 00:00:00 2001 From: Thomas Haaf Date: Wed, 24 May 2023 10:26:45 +0200 Subject: [PATCH] fix broken test / tsc not able to find typedfinitions --- common/tsconfig.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/common/tsconfig.json b/common/tsconfig.json index dc63e51..c0b6534 100644 --- a/common/tsconfig.json +++ b/common/tsconfig.json @@ -26,9 +26,12 @@ "baseUrl": ".", "paths": { "@common/*": ["./src/*"] - } + }, }, "include": [ "./src/**/*.ts", - ] + ], + "ts-node": { + "files": true + } }