From 34aa30387cf35d03e39f1d10495af24b2b1a299a Mon Sep 17 00:00:00 2001 From: Michael Cousins Date: Sat, 3 Aug 2024 08:18:16 -0400 Subject: [PATCH] fixup: lint with types for js fix --- tsconfig.eslint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index 7d2f731..1d0d3ee 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -1,7 +1,8 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "noEmit": true + "noEmit": true, + "allowJs": true }, "include": ["**/*.ts", "**/*.mts", "**/*.js"] }