1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 12:58: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 GitHub
parent 3318c495f6
commit 8ffeabc678
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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,