Skip to content

Commit

Permalink
feat(vs-code-client): Add tracing config
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Jan 16, 2024
1 parent 362f098 commit ab92768
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion apps/vs-code-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,24 @@
"scopeName": "source.dyvil",
"path": "./assets/dyvil.tmGrammar.json"
}
]
],
"configuration": {
"type": "object",
"title": "Dyvil",
"properties": {
"dyvil.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"configurationDefaults": {
"[dyvil]": {
Expand Down

0 comments on commit ab92768

Please sign in to comment.