@matter/tools 0.12.0-alpha.0-20250101-22e7c1044 → 0.12.0-alpha.0-20250107-af5a068c3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matter/tools",
3
- "version": "0.12.0-alpha.0-20250101-22e7c1044",
3
+ "version": "0.12.0-alpha.0-20250107-af5a068c3",
4
4
  "description": "Matter.js tooling",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -55,7 +55,7 @@
55
55
  "typescript": "~5.7.2",
56
56
  "type-fest": "^4.31.0",
57
57
  "typedoc": "^0.27.6",
58
- "typedoc-github-theme": "^0.2.0",
58
+ "typedoc-github-theme": "^0.2.1",
59
59
  "@microsoft/tsdoc": "^0.15.1"
60
60
  },
61
61
  "optionalDependencies": {
@@ -30,6 +30,19 @@
30
30
 
31
31
  "customConditions": [ "dev-types" ],
32
32
 
33
+ "lib": [
34
+ "es2022",
35
+
36
+ "ESNext.Disposable",
37
+
38
+ // Many standard types are only available via node or DOM. Neither are fully appropriate for our purposes,
39
+ // however the DOM types are closer to the standard and add fewer objects that are not present at runtime
40
+ // (namely window and document, which we don't have much use for and know to avoid)
41
+ //
42
+ // Unfortunately TS doesn't break types into individual libs, so we must import the entire DOM
43
+ "dom"
44
+ ],
45
+
33
46
  // Enforce a subset of our code conventions
34
47
  "forceConsistentCasingInFileNames": true,
35
48
  "noImplicitAny": true,