mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
13 lines
284 B
JSON
13 lines
284 B
JSON
|
{
|
||
|
"jsonrpc": "2.0",
|
||
|
"method": "textDocument/didOpen",
|
||
|
"params": {
|
||
|
"textDocument": {
|
||
|
"uri": "file:///a/file.ts",
|
||
|
"languageId": "typescript",
|
||
|
"version": 1,
|
||
|
"text": "import * as a from \"https://deno.land/x/a/mod.ts\";\n\nconsole.log(a);\n"
|
||
|
}
|
||
|
}
|
||
|
}
|