effect-app 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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @effect-app/prelude
2
2
 
3
+ ## 4.0.0-beta.276
4
+
5
+ ### Patch Changes
6
+
7
+ - 32f05c8: Remove unused dependency declarations from package manifests.
8
+
9
+ ## 4.0.0-beta.275
10
+
3
11
  ## 4.0.0-beta.274
4
12
 
5
13
  ## 4.0.0-beta.273
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "effect-app",
3
- "version": "4.0.0-beta.274",
3
+ "version": "4.0.0-beta.276",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "dependencies": {
@@ -9,15 +9,12 @@
9
9
  "nanoid": "^5.1.11",
10
10
  "path-parser": "^6.1.0",
11
11
  "query-string": "^9.4.0",
12
- "ts-pattern": "^5.9.0",
13
12
  "ts-toolbelt": "^9.6.0",
14
- "uuid": "^14.0.0",
15
13
  "validator": "^13.15.35"
16
14
  },
17
15
  "devDependencies": {
18
16
  "@faker-js/faker": "^8.4.1",
19
17
  "@types/node": "25.9.1",
20
- "@types/uuid": "^11.0.0",
21
18
  "@types/validator": "^13.15.10",
22
19
  "fast-check": "~4.8.0",
23
20
  "typescript": "~6.0.3",
package/tsconfig.json.bak CHANGED
@@ -1,12 +1,73 @@
1
1
  {
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
- }
2
+ "compilerOptions": {
3
+ "strict": true,
4
+ "allowUnusedLabels": false,
5
+ "allowUnreachableCode": false,
6
+ "exactOptionalPropertyTypes": true,
7
+ "noFallthroughCasesInSwitch": true,
8
+ "noImplicitOverride": true,
9
+ "noImplicitReturns": false,
10
+ "noPropertyAccessFromIndexSignature": true,
11
+ "noUncheckedIndexedAccess": true,
12
+ "noUnusedLocals": true,
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
+ }