(root)
| 100 | }, |
| 101 | extensions: [".ts", ".tsx", ".js", ".jsx", ".mjs"], |
| 102 | async spawn(root) { |
| 103 | const deno = which("deno") |
| 104 | if (!deno) { |
| 105 | return |
| 106 | } |
| 107 | return { |
| 108 | process: spawn(deno, ["lsp"], { |
| 109 | cwd: root, |
| 110 | }), |
| 111 | } |
| 112 | }, |
| 113 | } |
| 114 | |
| 115 | export const Typescript: Info = { |
nothing calls this directly
no test coverage detected