Skip to content

Commit 8b8bc76

Browse files
committed
fix: add eslint.config.* to tsconfig.node.json
ESLint 9.18 unflagged `eslint.config.ts` support, therefore it's necessary to add `eslint.config.*` to `tsconfig.node.json` to avoid typescript-eslint raising error on that file.
1 parent d2613ee commit 8b8bc76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

template/tsconfig/base/tsconfig.node.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"vitest.config.*",
66
"cypress.config.*",
77
"nightwatch.conf.*",
8-
"playwright.config.*"
8+
"playwright.config.*",
9+
"eslint.config.*"
910
],
1011
"compilerOptions": {
1112
"noEmit": true,

0 commit comments

Comments
 (0)