@ironcode-ai/sdk 1.10.2 → 1.10.4

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.
@@ -1555,6 +1555,10 @@ export type Config = {
1555
1555
  };
1556
1556
  };
1557
1557
  lsp?: false | {
1558
+ /**
1559
+ * Maximum number of LSP servers to spawn concurrently (default: 3). Prevents OOM when opening many files.
1560
+ */
1561
+ maxConcurrentSpawns?: number;
1558
1562
  [key: string]: {
1559
1563
  disabled: true;
1560
1564
  } | {
@@ -1567,7 +1571,7 @@ export type Config = {
1567
1571
  initialization?: {
1568
1572
  [key: string]: unknown;
1569
1573
  };
1570
- };
1574
+ } | number | undefined;
1571
1575
  };
1572
1576
  /**
1573
1577
  * Additional instruction files or patterns to include
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@ironcode-ai/sdk",
4
- "version": "1.10.2",
4
+ "version": "1.10.4",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -41,7 +41,7 @@
41
41
  "@hey-api/openapi-ts": "0.90.10",
42
42
  "@tsconfig/node22": "22.0.2",
43
43
  "@types/node": "22.13.9",
44
- "typescript": "5.8.2",
44
+ "typescript": "5.9.3",
45
45
  "@typescript/native-preview": "7.0.0-dev.20251207.1"
46
46
  },
47
47
  "dependencies": {},