From 6891d35052cd7b6621659ebb927c052a8b590f4d Mon Sep 17 00:00:00 2001 From: Helios Date: Wed, 8 Apr 2020 00:14:11 +0800 Subject: [PATCH] chore: remove useless include rule and comma --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ecf8da7..88a246c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -37,12 +37,12 @@ "pretty": true, "newLine": "lf", "stripInternal": true, - "noUnusedLocals": true, + "noUnusedLocals": true }, "include": [ - "src/**/*", "src/manifest/index.js" + "src/**/*" ], "exclude": [ "node_modules" ] -} \ No newline at end of file +}