mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
Fix issues with JavaScript importing JavaScript. (#4120)
Fixes #3852 Fixes #4117
This commit is contained in:
parent
22f88b9f37
commit
805992b14a
7 changed files with 20 additions and 5 deletions
|
@ -304,7 +304,11 @@ export const ignoredDiagnostics = [
|
|||
// support JSON imports. Allegedly this was fixed in
|
||||
// Microsoft/TypeScript#26825 but that doesn't seem to be working here,
|
||||
// so we will ignore complaints about this compiler setting.
|
||||
5070
|
||||
5070,
|
||||
// TS7016: Could not find a declaration file for module '...'. '...'
|
||||
// implicitly has an 'any' type. This is due to `allowJs` being off by
|
||||
// default but importing of a JavaScript module.
|
||||
7016
|
||||
];
|
||||
|
||||
/** When doing a host configuration, processing the response and logging out
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue