mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-17 00:40:13 +01:00
@@ -44,6 +44,12 @@
|
||||
],
|
||||
"main": "./out/extension",
|
||||
"contributes": {
|
||||
"jsonValidation": [
|
||||
{
|
||||
"fileMatch": "package.json",
|
||||
"url": "./schemas/package.schema.json"
|
||||
}
|
||||
],
|
||||
"configuration": {
|
||||
"type": "object",
|
||||
"title": "%configuration.typescript%",
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"title": "TypeScript contributions to package.json",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contributes": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"typescriptServerPlugins": {
|
||||
"type": "array",
|
||||
"description": "Contributed TypeScript server plugins.",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"description": "TypeScript server plugin.typescriptServerPlugins",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"description": "The name of the plugin as listed in the package.json."
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user