@effect-app/vue 4.0.0-beta.274 → 4.0.0-beta.276
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/dist/atomQuery.d.ts +9 -1
- package/dist/atomQuery.d.ts.map +1 -1
- package/dist/atomQuery.js +15 -7
- package/dist/makeClient.d.ts.map +1 -1
- package/dist/makeClient.js +45 -26
- package/dist/query.d.ts.map +1 -1
- package/dist/query.js +34 -14
- package/docs/atom-query-api-redesign.md +16 -0
- package/package.json +2 -4
- package/src/atomQuery.ts +26 -6
- package/src/makeClient.ts +50 -27
- package/src/query.ts +35 -14
- package/test/dist/patchableQueryAtom.test.d.ts.map +1 -0
- package/test/dist/queryOptions.test.d.ts.map +1 -0
- package/test/dist/retrySchedule.test.d.ts.map +1 -0
- package/test/suspense.test.ts +141 -1
- package/tsconfig.json.bak +14 -72
package/tsconfig.json.bak
CHANGED
|
@@ -1,73 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"skipLibCheck": true,
|
|
17
|
-
"plugins": [],
|
|
18
|
-
"module": "Node16",
|
|
19
|
-
"lib": [
|
|
20
|
-
"ES2023"
|
|
21
|
-
],
|
|
22
|
-
"target": "es2022",
|
|
23
|
-
"inlineSourceMap": true,
|
|
24
|
-
"incremental": true,
|
|
25
|
-
"composite": true,
|
|
26
|
-
"declarationMap": true,
|
|
27
|
-
"experimentalDecorators": true,
|
|
28
|
-
"emitDecoratorMetadata": true,
|
|
29
|
-
"noImplicitAny": true,
|
|
30
|
-
"useUnknownInCatchVariables": true,
|
|
31
|
-
"noImplicitThis": true,
|
|
32
|
-
"outDir": "build/dist",
|
|
33
|
-
"resolveJsonModule": true,
|
|
34
|
-
"moduleResolution": "Node16",
|
|
35
|
-
"noErrorTruncation": true,
|
|
36
|
-
"forceConsistentCasingInFileNames": true,
|
|
37
|
-
"erasableSyntaxOnly": true,
|
|
38
|
-
"rewriteRelativeImportExtensions": true,
|
|
39
|
-
"allowImportingTsExtensions": true,
|
|
40
|
-
"types": [
|
|
41
|
-
"node"
|
|
42
|
-
]
|
|
43
|
-
},
|
|
44
|
-
"$schema": "https://www.schemastore.org/tsconfig",
|
|
45
|
-
"_version": "2.0.0",
|
|
46
|
-
"watchOptions": {
|
|
47
|
-
"watchFile": "useFsEvents",
|
|
48
|
-
"watchDirectory": "useFsEvents",
|
|
49
|
-
"fallbackPolling": "dynamicPriority",
|
|
50
|
-
"excludeDirectories": [
|
|
51
|
-
"**/node_modules",
|
|
52
|
-
"**/dist",
|
|
53
|
-
"**/.build",
|
|
54
|
-
"**/.git",
|
|
55
|
-
"**/.data",
|
|
56
|
-
"**/.logs",
|
|
57
|
-
"**/.*"
|
|
58
|
-
],
|
|
59
|
-
"excludeFiles": [
|
|
60
|
-
"**/*.tmp",
|
|
61
|
-
"openapi.json",
|
|
62
|
-
"*.json"
|
|
63
|
-
]
|
|
64
|
-
},
|
|
65
|
-
"include": [],
|
|
66
|
-
"exclude": [
|
|
67
|
-
"**/node_modules",
|
|
68
|
-
"**/build",
|
|
69
|
-
"**/dist",
|
|
70
|
-
"**/.*"
|
|
71
|
-
],
|
|
72
|
-
"references": []
|
|
73
|
-
}
|
|
2
|
+
"compilerOptions": {},
|
|
3
|
+
"extends": "../../tsconfig.base.json",
|
|
4
|
+
"references": [
|
|
5
|
+
{
|
|
6
|
+
"path": "./tsconfig.src.json"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"path": "./tsconfig.test.json"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"path": "./tsconfig.examples.json"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|