mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
Add more complex options
This commit is contained in:
@@ -145,11 +145,58 @@
|
||||
"title": "%configuration.typescript%",
|
||||
"order": 20,
|
||||
"properties": {
|
||||
"typescript.experimental.aiQuickFix": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%typescript.experimental.aiQuickFix%",
|
||||
"scope": "resource"
|
||||
"typescript.experimental.aiCodeActions": {
|
||||
"type": "object",
|
||||
"default": {},
|
||||
"description": "%typescript.experimental.aiCodeActions%",
|
||||
"scope": "resource",
|
||||
"properties": {
|
||||
"classIncorrectlyImplementsInterface": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.classIncorrectlyImplementsInterface%"
|
||||
},
|
||||
"classDoesntImplementInheritedAbstractMember": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.classDoesntImplementInheritedAbstractMember%"
|
||||
},
|
||||
"missingFunctionDeclaration": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.missingFunctionDeclaration%"
|
||||
},
|
||||
"inferAndAddTypes": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.inferAndAddTypes%"
|
||||
},
|
||||
"addNameToNamelessParameter": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.addNameToNamelessParameter%"
|
||||
},
|
||||
"extractConstant": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.extractConstant%"
|
||||
},
|
||||
"extractFunction": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.extractFunction%"
|
||||
},
|
||||
"extractType": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.extractType%"
|
||||
},
|
||||
"extractInterface": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "%typescript.experimental.aiCodeActions.extractInterface%"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typescript.tsdk": {
|
||||
"type": "string",
|
||||
|
||||
Reference in New Issue
Block a user