coc-deno: Still getting linting errors when importing with `.ts` extension.
I’m still getting error from tsserver when importing .ts
files, and top level await
. Is there an option I should set or something?
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Reactions: 6
- Comments: 35 (11 by maintainers)
@alextes yes, disable doesn’t work. I’ll look into this.
try v3.0.0, use
deno lsp
.@cjnucette yes, there are errors on non-deno files, but it’s not coc-deno’s issue, but typescript-deno-plugin, vscode-deno also has this error: https://github.com/justjavac/vscode-deno/issues/70
:CocList extensions
to list all extensions you have installed, filtercoc-deno
, tab to selectdisable
action.I can’t disable the extension in non-deno typescript files so I’m getting error on regular
imports
like inimport { something} from 'components/something';
. I tried disablingdeno.enable: false
inCocLocalConfig
with no luck (or regular CocConfig with the same result).