Skip to content

Commit 129f8c9

Browse files
chore: Module resolution bundler (#6217)
1 parent c014ea7 commit 129f8c9

File tree

5 files changed

+9
-16
lines changed

5 files changed

+9
-16
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ yarn.lock
88

99
# builds
1010
types
11+
*/**/.svelte-kit
1112
*/**/build
1213
*/**/dist
1314
*/**/lib

Diff for: packages/query-broadcast-client-experimental/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@
4545
},
4646
"dependencies": {
4747
"@tanstack/query-core": "workspace:*",
48-
"broadcast-channel": "^5.1.0"
48+
"broadcast-channel": "^5.5.0"
4949
}
5050
}

Diff for: packages/react-query/src/suspense.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { DefaultError } from '@tanstack/query-core/src'
1+
import type { DefaultError } from '@tanstack/query-core'
22
import type {
33
DefaultedQueryObserverOptions,
44
Query,

Diff for: pnpm-lock.yaml

+5-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"isolatedModules": true,
1515
"lib": ["DOM", "DOM.Iterable", "ES2020"],
1616
"module": "ES2020",
17-
"moduleResolution": "Node", // TODO change this to Node16 or Bundler
17+
"moduleResolution": "Bundler",
1818
"noEmit": true,
1919
"noImplicitAny": true,
2020
"noImplicitReturns": true,

0 commit comments

Comments
 (0)