mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
1a9209d1e3
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
12 lines
291 B
JSON
12 lines
291 B
JSON
{
|
|
"jsonrpc": "2.0",
|
|
"method": "textDocument/didOpen",
|
|
"params": {
|
|
"textDocument": {
|
|
"uri": "file:///a/file.ts",
|
|
"languageId": "typescript",
|
|
"version": 1,
|
|
"text": "const a = `编写软件很难`;\nconst b = `👍🦕😃`;\nconsole.log(a, b);\n"
|
|
}
|
|
}
|
|
}
|