mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-26 12:44:05 +00:00
* Run our build scripts directly as typescript #277567 Follow up on #276864 For #277526 * Remove a few more ts-node references * Fix linux and script reference * Remove `_build-script` ref * Fix script missing closing quote * use type only import * Fix export * Make sure to run copy-policy-dto * Make sure we run the copy-policy-dto script * Enable `verbatimModuleSyntax` * Pipelines fixes * Try adding explicit ext to path * Fix bad edit * Revert extra `--` --------- Co-authored-by: João Moreno <joaomoreno@users.noreply.github.com>
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "terminal-suggest",
|
|
"publisher": "vscode",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.1",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"icon": "./src/media/icon.png",
|
|
"engines": {
|
|
"vscode": "^1.95.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"enabledApiProposals": [
|
|
"terminalCompletionProvider",
|
|
"terminalShellEnv"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "terminal.integrated.suggest.clearCachedGlobals",
|
|
"category": "Terminal",
|
|
"title": "%terminal.integrated.suggest.clearCachedGlobals%"
|
|
}
|
|
],
|
|
"terminal": {
|
|
"completionProviders": [
|
|
{
|
|
"description": "Show suggestions for commands, arguments, flags, and file paths based upon the Fig spec."
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "npx gulp compile-extension:terminal-suggest",
|
|
"watch": "npx gulp watch-extension:terminal-suggest",
|
|
"pull-zshbuiltins": "node ./scripts/pullZshBuiltins.ts",
|
|
"pull-fishbuiltins": "node ./scripts/pullFishBuiltins.ts"
|
|
},
|
|
"main": "./out/terminalSuggestMain",
|
|
"activationEvents": [
|
|
"onTerminalShellIntegration:*"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.18.10"
|
|
}
|
|
}
|