Skip to content

Commit

Permalink
chore: Module resolution bundler (TanStack#6217)
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Oct 22, 2023
1 parent c014ea7 commit 129f8c9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ yarn.lock

# builds
types
*/**/.svelte-kit
*/**/build
*/**/dist
*/**/lib
Expand Down
2 changes: 1 addition & 1 deletion packages/query-broadcast-client-experimental/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
},
"dependencies": {
"@tanstack/query-core": "workspace:*",
"broadcast-channel": "^5.1.0"
"broadcast-channel": "^5.5.0"
}
}
2 changes: 1 addition & 1 deletion packages/react-query/src/suspense.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { DefaultError } from '@tanstack/query-core/src'
import type { DefaultError } from '@tanstack/query-core'
import type {
DefaultedQueryObserverOptions,
Query,
Expand Down
18 changes: 5 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"isolatedModules": true,
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"module": "ES2020",
"moduleResolution": "Node", // TODO change this to Node16 or Bundler
"moduleResolution": "Bundler",
"noEmit": true,
"noImplicitAny": true,
"noImplicitReturns": true,
Expand Down

0 comments on commit 129f8c9

Please sign in to comment.