From 0b1cfc91d904f14dc8689c34d2422b505dc36949 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 16 Sep 2022 22:37:04 -0700 Subject: [PATCH] fix(test/tsconfig): exclude test-plugin --- test/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/tsconfig.json b/test/tsconfig.json index 5197ce276..3e568e887 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -1,4 +1,5 @@ { "extends": "../tsconfig.json", - "include": ["./**/*.ts"] + "include": ["./**/*.ts"], + "exclude": ["./unit/node/test-plugin"] }