Skip to content

Commit 3a127bf

Browse files
chore: include field of tsconfig correctly to be affected by eslint with typescript (TanStack#6688)
Co-authored-by: Lachlan Collins <[email protected]>
1 parent 4973f32 commit 3a127bf

File tree

6 files changed

+4
-6
lines changed

6 files changed

+4
-6
lines changed

integrations/vue-vite/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"noUnusedParameters": true,
2121
"noFallthroughCasesInSwitch": true
2222
},
23-
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
23+
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "vite.config.ts"],
2424
"references": [{ "path": "./tsconfig.node.json" }]
2525
}

packages/angular-query-devtools-experimental/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
"strictInputAccessModifiers": true,
2424
"strictTemplates": true
2525
},
26-
"include": ["src/**/*.ts", ".eslintrc.cjs"]
26+
"include": ["src/**/*.ts", ".eslintrc.cjs", "vite.config.ts"]
2727
}

packages/angular-query-experimental/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
"strictInputAccessModifiers": true,
2424
"strictTemplates": true
2525
},
26-
"include": ["src/**/*.ts", ".eslintrc.cjs"]
26+
"include": ["src/**/*.ts", ".eslintrc.cjs", "vite.config.ts"]
2727
}

packages/codemods/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": ["src/**/*.ts", "src/**/*.tsx", ".eslintrc.cjs"]
3+
"include": ["src/**/*.ts", "src/**/*.tsx", ".eslintrc.cjs", "vite.config.ts"]
44
}

packages/react-query-next-experimental/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"src/**/*.ts",
88
"src/**/*.tsx",
99
".eslintrc.cjs",
10-
"test-setup.ts",
1110
"tsup.config.js",
1211
"vite.config.ts"
1312
]

packages/solid-query-devtools/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"src/**/*.ts",
99
"src/**/*.tsx",
1010
".eslintrc.cjs",
11-
"test-setup.ts",
1211
"tsup.config.js",
1312
"vite.config.ts"
1413
]

0 commit comments

Comments
 (0)