From 7f0434523fe0614969aa5a270b5745098e89a624 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 23 Jan 2024 19:39:45 +0000 Subject: [PATCH] Update tsconfig.json --- tsconfig.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 6cf23bc377..77750471ea 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,7 @@ "declaration": true, "jsx": "react", "lib": ["es2021", "dom", "dom.iterable"], - "strict": true + "strict": true, }, "include": [ "./node_modules/matrix-js-sdk/src/@types/*.d.ts", @@ -26,12 +26,12 @@ "./src/**/*.tsx", "./test/**/*.ts", "./test/**/*.tsx", - "./scripts/*.ts" + "./scripts/*.ts", ], "ts-node": { "files": true, "moduleTypes": { - "*": "cjs" - } - } + "*": "cjs", + }, + }, }