1
0
Fork 0
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:
Satya Rohith 2021-05-18 09:39:33 +05:30 committed by Bert Belder
parent ef6d69c314
commit a622486a1a
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -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,