From 3c4cacb7990da699f75305874d24070c9bbb5764 Mon Sep 17 00:00:00 2001 From: crazyni98 Date: Thu, 1 May 2025 00:12:43 +0300 Subject: [PATCH] Update convex.schema.json --- schemas/convex.schema.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/schemas/convex.schema.json b/schemas/convex.schema.json index cc08c77..ff0fb4f 100644 --- a/schemas/convex.schema.json +++ b/schemas/convex.schema.json @@ -3,16 +3,13 @@ "description": "Configuration schema for Convex project settings.\n\nDocumentation: https://docs.convex.dev/production/project-configuration#convexjson", "type": "object", "properties": { - "$schema": { - "type": "string" - }, "node": { "type": "object", "description": "Node.js specific configuration for server-side packages and dependencies.", "properties": { "externalPackages": { "type": ["array"], - "description": "List of packages that should be installed on the server instead of being bundled. Use this for packages that can't be bundled or need to be installed directly on the server.\n\nIf you want to mark all dependencies as external, you can use the string '*' instead of an array.\n\nDocumentation: https://docs.convex.dev/functions/bundling#external-packages", + "description": "List of packages that should be installed on the server instead of being bundled. Use this for packages that can't be bundled or need to be installed directly on the server.\n\nYou can use '*' to mark all dependencies as external.", "items": { "type": "string" }, @@ -37,12 +34,12 @@ }, "generateCommonJSApi": { "type": "boolean", - "description": "When true, generates CommonJS-compatible API files for projects not using ES modules. Enable this if your project uses require() syntax instead of ES modules.\n\nDocumentation: https://docs.convex.dev/client/javascript/node#javascript-with-commonjs-require-syntax", + "description": "When true, generates CommonJS-compatible API files for projects using require().", "default": false }, "functions": { "type": "string", - "description": "Path to the directory containing Convex functions. You can customize this to use a different location than the default 'convex/' directory.\n\nDocumentation: https://docs.convex.dev/production/project-configuration#changing-the-convex-folder-name-or-location", + "description": "Path to the directory containing Convex functions.", "default": "convex/" } },