add javascript & typescript.validate.enable
This commit is contained in:
parent
bcc25ec085
commit
18c99edc21
1 changed files with 21 additions and 8 deletions
29
package.json
29
package.json
|
@ -179,10 +179,6 @@
|
|||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"typescript.suggestionActions.enabled": {
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"typescript.preferences.quoteStyle": {
|
||||
"type": "string",
|
||||
"default": "single",
|
||||
|
@ -191,6 +187,16 @@
|
|||
"double"
|
||||
]
|
||||
},
|
||||
"typescript.suggestionActions.enabled": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Enable/disable suggestion diagnostics for TypeScript files in the editor. Requires using TypeScript 2.8 or newer in the workspace."
|
||||
},
|
||||
"typescript.validate.enable": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Enable/disable TypeScript validation."
|
||||
},
|
||||
"typescript.suggest.enabled": {
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
|
@ -286,10 +292,6 @@
|
|||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"javascript.suggestionActions.enabled": {
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"javascript.preferences.quoteStyle": {
|
||||
"type": "string",
|
||||
"default": "single",
|
||||
|
@ -298,6 +300,16 @@
|
|||
"double"
|
||||
]
|
||||
},
|
||||
"javascript.validate.enable": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Enable/disable JavaScript validation."
|
||||
},
|
||||
"javascript.suggestionActions.enabled": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Enable/disable suggestion diagnostics for JavaScript files in the editor. Requires using TypeScript 2.8 or newer in the workspace."
|
||||
},
|
||||
"javascript.suggest.names": {
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
|
@ -397,3 +409,4 @@
|
|||
"which": "^1.3.1"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue