add configs to extension #10

Merged
Christoph merged 1 commits from tcl_language_support into main 2025-07-20 19:12:34 +00:00
+28 -1
View File
@@ -76,7 +76,34 @@
"scopeName": "source.def",
"path": "./syntaxes/def.tmLanguage.json"
}
]
],
"configuration": {
"properties": {
"nx-post-support.importStrategy": {
"default": "useBundled",
"description": "Defines where `NX Postprocessor Support` is imported from.",
"enum": [
"useBundled",
"fromEnvironment"
],
"enumDescriptions": [
"Always use the bundled version of `NX Postprocessor Support`.",
"Use `NX Postprocessor Support` from environment, fallback to bundled version only if `NX Postprocessor Support` not available in the environment."
],
"scope": "window",
"type": "string"
},
"nx-post-support.interpreter": {
"default": [],
"description": "When set to the path of a Python executable, extension will use that to launch the server.",
"scope": "resource",
"items": {
"type": "string"
},
"type": "array"
}
}
}
},
"scripts": {
"compile": "node esbuild.js --production",