From 706119da08ad109b84674fb3b6c6d777961dc5de Mon Sep 17 00:00:00 2001 From: Matthew Herbst Date: Thu, 17 Oct 2024 10:47:23 -0700 Subject: [PATCH] Correct tsconfig reference in ESLint setup (#753) --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 2e2fa07..b239ff2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -8,7 +8,7 @@ module.exports = { ], parser: "@typescript-eslint/parser", parserOptions: { - project: "tsconfig.dev.json", + project: "tsconfig.json", sourceType: "module", }, plugins: ["@typescript-eslint"],