mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 21:06:57 +00:00
584 lines
No EOL
19 KiB
JSON
584 lines
No EOL
19 KiB
JSON
{
|
|
"name": "typescript-language-features",
|
|
"description": "%description%",
|
|
"displayName": "%displayName%",
|
|
"version": "1.0.0",
|
|
"icon": "icon.png",
|
|
"author": "vscode",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
|
|
"enableProposedApi": true,
|
|
"engines": {
|
|
"vscode": "*"
|
|
},
|
|
"dependencies": {
|
|
"semver": "4.3.6",
|
|
"vscode-extension-telemetry": "0.0.15",
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "8.0.33",
|
|
"@types/semver": "5.4.0"
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:typescript ./tsconfig.json"
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:javascript",
|
|
"onLanguage:javascriptreact",
|
|
"onLanguage:typescript",
|
|
"onLanguage:typescriptreact",
|
|
"onLanguage:jsx-tags",
|
|
"onCommand:typescript.reloadProjects",
|
|
"onCommand:javascript.reloadProjects",
|
|
"onCommand:typescript.selectTypeScriptVersion",
|
|
"onCommand:javascript.goToProjectConfig",
|
|
"onCommand:typescript.goToProjectConfig",
|
|
"onCommand:typescript.openTsServerLog",
|
|
"onCommand:workbench.action.tasks.runTask"
|
|
],
|
|
"main": "./out/extension",
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "%configuration.typescript%",
|
|
"order": 20,
|
|
"properties": {
|
|
"typescript.tsdk": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
],
|
|
"default": null,
|
|
"description": "%typescript.tsdk.desc%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.disableAutomaticTypeAcquisition": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%typescript.disableAutomaticTypeAcquisition%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.npm": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
],
|
|
"default": null,
|
|
"description": "%typescript.npm%",
|
|
"isExecutable": true,
|
|
"scope": "window"
|
|
},
|
|
"typescript.check.npmIsInstalled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%typescript.check.npmIsInstalled%",
|
|
"scope": "window"
|
|
},
|
|
"javascript.referencesCodeLens.enabled": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%javascript.referencesCodeLens.enabled%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.referencesCodeLens.enabled": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%typescript.referencesCodeLens.enabled%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.implementationsCodeLens.enabled": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%typescript.implementationsCodeLens.enabled%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.tsserver.log": {
|
|
"type": "string",
|
|
"enum": [
|
|
"off",
|
|
"terse",
|
|
"normal",
|
|
"verbose"
|
|
],
|
|
"default": "off",
|
|
"description": "%typescript.tsserver.log%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.tsserver.trace": {
|
|
"type": "string",
|
|
"enum": [
|
|
"off",
|
|
"messages",
|
|
"verbose"
|
|
],
|
|
"default": "off",
|
|
"description": "%typescript.tsserver.trace%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.useCodeSnippetsOnMethodSuggest": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%typescript.useCodeSnippetsOnMethodSuggest.dec%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.reportStyleChecksAsWarnings": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%typescript.reportStyleChecksAsWarnings%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.validate.enable": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%typescript.validate.enable%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.format.enable": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%typescript.format.enable%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.format.insertSpaceAfterCommaDelimiter": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterCommaDelimiter%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterConstructor": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterConstructor%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterSemicolonInForStatements": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterSemicolonInForStatements%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceBeforeAndAfterBinaryOperators%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterKeywordsInControlFlowStatements%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterFunctionKeywordForAnonymousFunctions%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceBeforeFunctionParenthesis": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceBeforeFunctionParenthesis%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.insertSpaceAfterTypeAssertion": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterTypeAssertion%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.placeOpenBraceOnNewLineForFunctions": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.placeOpenBraceOnNewLineForFunctions%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.placeOpenBraceOnNewLineForControlBlocks%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.validate.enable": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%javascript.validate.enable%",
|
|
"scope": "window"
|
|
},
|
|
"javascript.format.enable": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%javascript.format.enable%",
|
|
"scope": "window"
|
|
},
|
|
"javascript.format.insertSpaceAfterCommaDelimiter": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterCommaDelimiter%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterConstructor": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterConstructor%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterSemicolonInForStatements": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterSemicolonInForStatements%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceBeforeAndAfterBinaryOperators": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceBeforeAndAfterBinaryOperators%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterKeywordsInControlFlowStatements%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterFunctionKeywordForAnonymousFunctions%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceBeforeFunctionParenthesis": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceBeforeFunctionParenthesis%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.placeOpenBraceOnNewLineForFunctions": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.placeOpenBraceOnNewLineForFunctions%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%format.placeOpenBraceOnNewLineForControlBlocks%",
|
|
"scope": "resource"
|
|
},
|
|
"jsDocCompletion.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%jsDocCompletion.enabled%",
|
|
"scope": "resource"
|
|
},
|
|
"javascript.implicitProjectConfig.checkJs": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%javascript.implicitProjectConfig.checkJs%",
|
|
"scope": "window"
|
|
},
|
|
"javascript.implicitProjectConfig.experimentalDecorators": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%javascript.implicitProjectConfig.experimentalDecorators%",
|
|
"scope": "window"
|
|
},
|
|
"javascript.nameSuggestions": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%javascript.nameSuggestions%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.tsc.autoDetect": {
|
|
"type": "string",
|
|
"default": "on",
|
|
"enum": [
|
|
"on",
|
|
"off",
|
|
"build",
|
|
"watch"
|
|
],
|
|
"description": "%typescript.tsc.autoDetect%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.quickSuggestionsForPaths": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%typescript.quickSuggestionsForPaths%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.autoImportSuggestions.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%typescript.autoImportSuggestions.enabled%",
|
|
"scope": "resource"
|
|
},
|
|
"typescript.locale": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
],
|
|
"enum": [
|
|
"de",
|
|
"es",
|
|
"en",
|
|
"fr",
|
|
"it",
|
|
"ja",
|
|
"ko",
|
|
"ru",
|
|
"zh-CN",
|
|
"zh-TW",
|
|
null
|
|
],
|
|
"default": null,
|
|
"description": "%typescript.locale%",
|
|
"scope": "window"
|
|
},
|
|
"typescript.experimental.syntaxFolding": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "%typescript.experimental.syntaxFolding%"
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "typescript.reloadProjects",
|
|
"title": {
|
|
"original": "Reload Project",
|
|
"value": "%typescript.reloadProjects.title%"
|
|
},
|
|
"category": "TypeScript"
|
|
},
|
|
{
|
|
"command": "javascript.reloadProjects",
|
|
"title": {
|
|
"original": "Reload Project",
|
|
"value": "%javascript.reloadProjects.title%"
|
|
},
|
|
"category": "JavaScript"
|
|
},
|
|
{
|
|
"command": "typescript.selectTypeScriptVersion",
|
|
"title": {
|
|
"original": "Select TypeScript Version",
|
|
"value": "%typescript.selectTypeScriptVersion.title%"
|
|
},
|
|
"category": "TypeScript"
|
|
},
|
|
{
|
|
"command": "typescript.goToProjectConfig",
|
|
"title": {
|
|
"original": "Go to Project Configuration",
|
|
"value": "%typescript.goToProjectConfig.title%"
|
|
},
|
|
"category": "TypeScript"
|
|
},
|
|
{
|
|
"command": "javascript.goToProjectConfig",
|
|
"title": {
|
|
"original": "Go to Project Configuration",
|
|
"value": "%javascript.goToProjectConfig.title%"
|
|
},
|
|
"category": "JavaScript"
|
|
},
|
|
{
|
|
"command": "typescript.openTsServerLog",
|
|
"title": {
|
|
"original": "Open TS Server log",
|
|
"value": "%typescript.openTsServerLog.title%"
|
|
},
|
|
"category": "TypeScript"
|
|
},
|
|
{
|
|
"command": "typescript.restartTsServer",
|
|
"title": {
|
|
"original": "Restart TS server",
|
|
"value": "%typescript.restartTsServer%"
|
|
},
|
|
"category": "TypeScript"
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "typescript.reloadProjects",
|
|
"when": "editorLangId == typescript && typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "typescript.reloadProjects",
|
|
"when": "editorLangId == typescriptreact && typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "javascript.reloadProjects",
|
|
"when": "editorLangId == javascript && typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "javascript.reloadProjects",
|
|
"when": "editorLangId == javascriptreact && typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "typescript.goToProjectConfig",
|
|
"when": "editorLangId == typescript && typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "typescript.goToProjectConfig",
|
|
"when": "editorLangId == typescriptreact"
|
|
},
|
|
{
|
|
"command": "javascript.goToProjectConfig",
|
|
"when": "editorLangId == javascript && typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "javascript.goToProjectConfig",
|
|
"when": "editorLangId == javascriptreact && typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "typescript.selectTypeScriptVersion",
|
|
"when": "typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "typescript.openTsServerLog",
|
|
"when": "typescript.isManagedFile"
|
|
},
|
|
{
|
|
"command": "typescript.restartTsServer",
|
|
"when": "typescript.isManagedFile"
|
|
}
|
|
]
|
|
},
|
|
"breakpoints": [
|
|
{
|
|
"language": "typescript"
|
|
},
|
|
{
|
|
"language": "typescriptreact"
|
|
}
|
|
],
|
|
|
|
"taskDefinitions": [
|
|
{
|
|
"type": "typescript",
|
|
"required": [
|
|
"tsconfig"
|
|
],
|
|
"properties": {
|
|
"tsconfig": {
|
|
"type": "string",
|
|
"description": "%taskDefinition.tsconfig.description%"
|
|
},
|
|
"option": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"problemPatterns": [
|
|
{
|
|
"name": "tsc",
|
|
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(TS\\d+)\\s*:\\s*(.*)$",
|
|
"file": 1,
|
|
"location": 2,
|
|
"severity": 3,
|
|
"code": 4,
|
|
"message": 5
|
|
}
|
|
],
|
|
"problemMatchers": [
|
|
{
|
|
"name": "tsc",
|
|
"label": "%typescript.problemMatchers.tsc.label%",
|
|
"owner": "typescript",
|
|
"applyTo": "closedDocuments",
|
|
"fileLocation": [
|
|
"relative",
|
|
"${cwd}"
|
|
],
|
|
"pattern": "$tsc"
|
|
},
|
|
{
|
|
"name": "tsc-watch",
|
|
"label": "%typescript.problemMatchers.tscWatch.label%",
|
|
"owner": "typescript",
|
|
"applyTo": "closedDocuments",
|
|
"fileLocation": [
|
|
"relative",
|
|
"${cwd}"
|
|
],
|
|
"pattern": "$tsc",
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": {
|
|
"regexp": "^\\s*(?:message TS6032:|\\d{1,2}:\\d{1,2}:\\d{1,2}(?: AM| PM)? -) File change detected\\. Starting incremental compilation\\.\\.\\."
|
|
},
|
|
"endsPattern": {
|
|
"regexp": "^\\s*(?:message TS6042:|\\d{1,2}:\\d{1,2}:\\d{1,2}(?: AM| PM)? -) Compilation complete\\. Watching for file changes\\."
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
} |