From 2a9dbffbbcd3940d945b510d4fce3307fa6a9e66 Mon Sep 17 00:00:00 2001 From: Joshua License Date: Tue, 2 Sep 2025 12:34:18 +0100 Subject: [PATCH] Set `tsconfigRootDir` to `__dirname` in ESLint config --- eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 328b0f6..8008780 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -53,7 +53,7 @@ export default [ parserOptions: { project: ['tsconfig.eslint.json'], - tsconfigRootDir: '.' + tsconfigRootDir: __dirname } },