mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
fix(lsp): ignore type definition not found diagnostic (#10610)
Fixes #10575
This commit is contained in:
parent
ef6d69c314
commit
a622486a1a
1 changed files with 3 additions and 0 deletions
|
@ -149,6 +149,9 @@ delete Object.prototype.__proto__;
|
|||
// TS2306: File 'file:///Users/rld/src/deno/cli/tests/subdir/amd_like.js' is
|
||||
// not a module.
|
||||
2306,
|
||||
// TS2688: Cannot find type definition file for '...'.
|
||||
// We ignore because type defintion files can end with '.ts'.
|
||||
2688,
|
||||
// TS2691: An import path cannot end with a '.ts' extension. Consider
|
||||
// importing 'bad-module' instead.
|
||||
2691,
|
||||
|
|
Loading…
Reference in a new issue