mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
* Move MD diagnostics to language server This switches us to using the LSP pull diagnostic model with a new version of the language service * Bump package version * Delete unused file
16 lines
293 B
JSON
16 lines
293 B
JSON
{
|
|
"version": "0.1.0",
|
|
// List of configurations. Add new configurations or edit existing ones.
|
|
"configurations": [
|
|
{
|
|
"name": "Attach",
|
|
"type": "node",
|
|
"request": "attach",
|
|
"port": 7997,
|
|
"sourceMaps": true,
|
|
"outFiles": [
|
|
"${workspaceFolder}/out/**/*.js"
|
|
]
|
|
}
|
|
]
|
|
} |