add configs to extension

This commit is contained in:
2025-07-20 21:10:54 +02:00
parent 31cb644f85
commit 2a33639619
+28 -1
View File
@@ -76,7 +76,34 @@
"scopeName": "source.def", "scopeName": "source.def",
"path": "./syntaxes/def.tmLanguage.json" "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": { "scripts": {
"compile": "node esbuild.js --production", "compile": "node esbuild.js --production",