code-graph-context 2.6.1 → 2.6.2
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.
|
@@ -91,9 +91,9 @@ export const createParseTypescriptProjectTool = (server) => {
|
|
|
91
91
|
.default('auto')
|
|
92
92
|
.describe('When to use streaming import: auto (>100 files), always, or never'),
|
|
93
93
|
async: z
|
|
94
|
-
.boolean()
|
|
94
|
+
.coerce.boolean()
|
|
95
95
|
.optional()
|
|
96
|
-
.default(
|
|
96
|
+
.default(true)
|
|
97
97
|
.describe('Run parsing in background and return job ID immediately. Use check_parse_status to monitor.'),
|
|
98
98
|
watch: z
|
|
99
99
|
.boolean()
|
package/package.json
CHANGED