diff --git a/package.json b/package.json index af9377c..47d4dbf 100644 --- a/package.json +++ b/package.json @@ -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",