From 3cadbdf7bfbdab635bbdc73bdac99fe13fb7b488 Mon Sep 17 00:00:00 2001 From: Leslie Wong <79917148leslie@gmail.com> Date: Thu, 27 Apr 2023 06:18:04 +0800 Subject: [PATCH] :bug: fix: should exclude ts test from tsc-out --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 0d5de17..29ed3f7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -31,5 +31,5 @@ "types": ["jest"], "esModuleInterop": true }, - "include": ["./**/*.ts"] + "include": ["./src/*.ts"] }