Skip to content

Commit 80f667d

Browse files
committed
Remove 'project' when 'projectService' is enabled
1 parent 204532b commit 80f667d

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

apps/website/eslint.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ export default defineConfig([
5252
languageOptions: {
5353
parser: tseslint.parser,
5454
parserOptions: {
55-
project: "./tsconfig.json",
5655
projectService: true,
5756
tsconfigRootDir: import.meta.dirname,
5857
},

eslint.config.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ import tseslint from "typescript-eslint";
2121
const dirname = fileURLToPath(new URL(".", import.meta.url));
2222
const gitignore = fileURLToPath(new URL(".gitignore", import.meta.url));
2323

24-
const packagesTsConfigs = [
25-
"packages/*/tsconfig.json",
26-
"packages/*/*/tsconfig.json",
27-
];
28-
2924
export default defineConfig([
3025
includeIgnoreFile(gitignore, "Imported .gitignore patterns") as never,
3126
globalIgnores([
@@ -47,7 +42,6 @@ export default defineConfig([
4742
languageOptions: {
4843
parser: tseslint.parser,
4944
parserOptions: {
50-
project: packagesTsConfigs,
5145
projectService: true,
5246
tsconfigRootDir: dirname,
5347
},
@@ -98,7 +92,6 @@ export default defineConfig([
9892
...pluginVitest.environments.env.globals,
9993
},
10094
parserOptions: {
101-
project: "tsconfig.json",
10295
projectService: true,
10396
tsconfigRootDir: dirname,
10497
},

0 commit comments

Comments
 (0)