From 64d4895d390a87dc8f39f3fa5049ce07bd6dddb4 Mon Sep 17 00:00:00 2001 From: Oleg Valter Date: Wed, 11 Aug 2021 16:06:48 +0300 Subject: [PATCH] added TS config specific to tests --- test/tsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/tsconfig.json diff --git a/test/tsconfig.json b/test/tsconfig.json new file mode 100644 index 0000000..283d6af --- /dev/null +++ b/test/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "noEmit": true + }, + "include": ["."], + "exclude": ["src", "dist"] +}