@effect-app/infra 4.0.0-beta.275 → 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 +8 -0
- package/package.json +2 -6
- package/tsconfig.json.bak +11 -72
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/infra",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.276",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@faker-js/faker": "^8.4.1",
|
|
8
|
-
"change-case": "^5.4.4",
|
|
9
|
-
"cross-fetch": "^4.1.0",
|
|
10
8
|
"fast-check": "~4.8.0",
|
|
11
9
|
"jose": "^6.2.3",
|
|
12
|
-
"path-parser": "^6.1.0",
|
|
13
10
|
"proper-lockfile": "^4.1.2",
|
|
14
11
|
"pure-rand": "8.4.0",
|
|
15
12
|
"query-string": "^9.4.0",
|
|
16
|
-
"effect-app": "4.0.0-beta.
|
|
13
|
+
"effect-app": "4.0.0-beta.276"
|
|
17
14
|
},
|
|
18
15
|
"devDependencies": {
|
|
19
16
|
"@azure/cosmos": "^4.9.3",
|
|
@@ -31,7 +28,6 @@
|
|
|
31
28
|
"mongodb": "7.2.0",
|
|
32
29
|
"redis": "^3.1.2",
|
|
33
30
|
"redlock": "^4.2.0",
|
|
34
|
-
"strip-ansi": "^7.2.0",
|
|
35
31
|
"typescript": "~6.0.3",
|
|
36
32
|
"vitest": "^4.1.7"
|
|
37
33
|
},
|
package/tsconfig.json.bak
CHANGED
|
@@ -1,73 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"noUnusedParameters": true,
|
|
14
|
-
"isolatedModules": true,
|
|
15
|
-
"esModuleInterop": true,
|
|
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
|
+
}
|