From 9c27d7ea98bb438329d42edd6ef28c136782b1dc Mon Sep 17 00:00:00 2001 From: RoboErikG Date: Wed, 1 Oct 2025 10:12:40 -0700 Subject: [PATCH] Update eslint.config.mjs Replace '.' with __dirname since it requires an absolute path --- eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 744e02b45..e6dedc3eb 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -60,7 +60,7 @@ function buildTSOverride({files, tsconfig}) { 'sourceType': 'module', parserOptions: { 'project': tsconfig, - 'tsconfigRootDir': '.', + 'tsconfigRootDir': __dirname, }, globals: { ...globals.browser,