From 9eef9950a3992282a5918d8caaa119c9ba7e18ef Mon Sep 17 00:00:00 2001 From: Keshav Varadachari Date: Tue, 24 Aug 2021 14:30:05 -0400 Subject: [PATCH] update includes/excludes allowlist/blocklist src files --- tsconfig.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 2dcc0797310c2..b1d44f639f50c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -31,5 +31,14 @@ "#third_party/*": ["./third_party/*"] } }, - "exclude": ["node_modules", "dist"] + "include": [ + "src", + "3p", + "ads", + "extensions", + "test", + "testing", + "third_party" + ], + "exclude": ["build", "dist", "dist.*", "node_modules"] }