From c9d3cfdcaeed7073a7ccf72055864328f4f6e2bd Mon Sep 17 00:00:00 2001 From: Roman Filippov Date: Thu, 5 Mar 2020 14:11:20 +0700 Subject: [PATCH] fix: ESLint config issue --- tsconfig.build.json | 2 +- tsconfig.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index cabf7bb93..3f8d45a4f 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -5,6 +5,6 @@ "outDir": "lib" }, "include": [ - "src/**/*.ts" + "src/**/*" ], } diff --git a/tsconfig.json b/tsconfig.json index 6dcbcca04..2b69d1121 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "experimentalDecorators": true }, "include": [ - "src/**/*.ts", - "test/**/*.ts" + "src/**/*", + "test/**/*" ], }