From ccff3628b7de5958e21897bfad152f219ed86a99 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Wed, 26 Aug 2026 13:40:15 -0400 Subject: [PATCH] Add java.classpath.variables setting --- package.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/package.json b/package.json index de46d1c7c..8564e233f 100644 --- a/package.json +++ b/package.json @@ -1338,6 +1338,15 @@ "description": "Generate Javadoc comments in Markdown style (requires source compliance >= 23).", "default": false }, + "java.classpath.variables": { + "type": "array", + "description": "Set of classpath variable strings of the form: \"name=path\" that are used to resolve classpath entries.", + "items": { + "type":"string", + "pattern": "[a-zA-Z_$][a-zA-Z0-9_$]*=.*" + }, + "scope": "window" + }, "java.codeGeneration.toString.template": { "type": "string", "description": "The template for generating the toString method.",