From 7f9157bae1b435e54e945d8febc2218dcc0ff1da Mon Sep 17 00:00:00 2001 From: Daniel Abramov Date: Thu, 6 Jul 2023 11:47:37 +0100 Subject: [PATCH] Fix lint errors that originate from JS SDK --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7bf5b762..d81219c9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,10 +25,10 @@ // "noUnusedParameters": true, }, "include": [ + "./node_modules/matrix-js-sdk/src/@types/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx", "./test/**/*.ts", "./test/**/*.tsx" - ], - "exclude": ["node_modules"] + ] }