feat: add deno lsp for javascript (#3924)

* feat(js/deno): add deno lsp

* fix(doc/typescript): typo

* feat(doc/javascript): add deno lsp information

* feat(doc/supported-tools): add deno to js list, sorted

* fix(doc/javascript): update ToC and supported tools w/ deno
This commit is contained in:
Arnold Chand
2021-10-01 20:51:22 -04:00
committed by GitHub
parent 708e810414
commit 19b0f72c23
11 changed files with 122 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
{
"imports": {}
}

View File

@@ -0,0 +1,3 @@
{
"imports": {}
}

View File

@@ -0,0 +1 @@
console.log("Hello World");

View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"isolatedModules": true,
"jsx": "react",
"lib": ["deno.window"],
"module": "esnext",
"strict": true,
"target": "esnext",
"useDefineForClassFields": true
},
"includes": ["main.js"]
}