mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-07 21:24:33 +08:00
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:
3
test/test-files/javascript_deno/custom_import_map.json
Normal file
3
test/test-files/javascript_deno/custom_import_map.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"imports": {}
|
||||
}
|
||||
3
test/test-files/javascript_deno/import_map.json
Normal file
3
test/test-files/javascript_deno/import_map.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"imports": {}
|
||||
}
|
||||
1
test/test-files/javascript_deno/main.js
Normal file
1
test/test-files/javascript_deno/main.js
Normal file
@@ -0,0 +1 @@
|
||||
console.log("Hello World");
|
||||
16
test/test-files/javascript_deno/tsconfig.json
Normal file
16
test/test-files/javascript_deno/tsconfig.json
Normal 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user