blob: c6323b742149b5c6e86e1e0b69c7b4ec5adf55d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
"jsonrpc": "2.0",
"method": "textDocument/didOpen",
"params": {
"textDocument": {
"uri": "file:///a/file.ts",
"languageId": "typescript",
"version": 1,
"text": "let variable = 'a';\nconsole.log(variable);"
}
}
}
|