From bdaab7f5bd998a99a19a48b5e67bfea00e31f8cb Mon Sep 17 00:00:00 2001 From: Xymorot Date: Sat, 12 Oct 2019 00:52:14 +0200 Subject: [PATCH] config: fix include array to only include relevant directories --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 374e8bd..72d26d2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,5 @@ "emitDecoratorMetadata": true, "lib": ["es2018", "dom"] }, - "include": ["**/*.ts"] + "include": ["declarations/**/*.ts", "src/**/*.ts", "tests/**/*.ts"] }