From 28d380344bcee96dca931ef5ee1bfa46f6b5e4d9 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Thu, 10 Dec 2020 14:05:00 +0800 Subject: [PATCH] chore: ts project configuration fix for test_module --- test_module/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_module/tsconfig.json b/test_module/tsconfig.json index d1d19d67..c5cf16e7 100644 --- a/test_module/tsconfig.json +++ b/test_module/tsconfig.json @@ -2,7 +2,8 @@ "extends": "../tsconfig.json", "include": ["."], "compilerOptions": { - "outDir": "./dist" + "outDir": "./dist", + "rootDir": "__test__" }, "exclude": ["dist"] }