From 6572ff502626782ee1c4201e853fe188cd16706c Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Mon, 8 May 2023 14:25:34 +0000 Subject: [PATCH] Made custom tsconfig for tests --- tests/tsconfig.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/tsconfig.json diff --git a/tests/tsconfig.json b/tests/tsconfig.json new file mode 100644 index 0000000..994cf49 --- /dev/null +++ b/tests/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../tsconfig.json", + "include": ["./**/*", "../src/**/*"], + "compilerOptions": { + "outDir": "./tmp/build", + }, +}