@live-change/relations-plugin 0.9.175 → 0.9.177

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/tsconfig.json +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/relations-plugin",
3
- "version": "0.9.175",
3
+ "version": "0.9.177",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "type": "module",
24
24
  "dependencies": {
25
- "@live-change/framework": "^0.9.175",
25
+ "@live-change/framework": "^0.9.177",
26
26
  "pluralize": "^8.0.0"
27
27
  },
28
28
  "devDependencies": {
@@ -30,5 +30,5 @@
30
30
  "typedoc-plugin-markdown": "^4.6.3",
31
31
  "typedoc-plugin-rename-defaults": "^0.7.3"
32
32
  },
33
- "gitHead": "526a46cfabf1044ceb3f6ad39dbb3749acca68fb"
33
+ "gitHead": "d75c8c63935b7b78623248d255820b1da2676929"
34
34
  }
package/tsconfig.json CHANGED
@@ -20,7 +20,8 @@
20
20
  "esModuleInterop": true, // Enable interop for ES modules
21
21
  "resolveJsonModule": true, // Allow importing JSON files
22
22
  "skipLibCheck": true,
23
- "noImplicitAny": false
23
+ "noImplicitAny": false,
24
+ "types": []
24
25
  },
25
26
  "files": ["src/index.ts"],
26
27
  "include": ["src/**/*.ts", "src/**/*.js"],