Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into tstamm/v2/Replace-dis…
Browse files Browse the repository at this point in the history
…ableQuery-with-skipToken,-allow-overriding-computed-options
  • Loading branch information
timostamm committed Sep 30, 2024
2 parents 24c6d2c + dd029ca commit c9104be
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
3 changes: 1 addition & 2 deletions examples/react/basic/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@
"types": ["node"],
"declaration": true // necessary to check if generated code can be published
},
"include": ["src", "./*.config.ts", "__mocks__"],
"references": [{ "path": "./tsconfig.node.json" }]
"include": ["src", "./*.config.ts", "__mocks__"]
}
9 changes: 0 additions & 9 deletions examples/react/basic/tsconfig.node.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,10 @@ export default defineConfig({
plugins: [react()],
test: {
environment: "jsdom",
typecheck: {
enabled: true,
// Mofidied to typecheck definition files as well as source files
include: ["**/*.{test,spec}?(-d).?(c|m)[jt]s?(x)"],
},
},
});
5 changes: 5 additions & 0 deletions packages/connect-query/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "jsdom",
typecheck: {
enabled: true,
// Mofidied to typecheck definition files as well as source files
include: ["**/*.{test,spec}?(-d).?(c|m)[jt]s?(x)"],
},
coverage: {
provider: "istanbul",
thresholds: {
Expand Down

0 comments on commit c9104be

Please sign in to comment.