0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05:00
denoland-deno/tests/specs/run/_038_checkjs/038_checkjs.js.out
David Sherret 4648fc4570
fix(check): compiler options from workspace members (#27785)
Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com>
2025-01-28 10:49:58 -05:00

24 lines
563 B
Text

[WILDCARD]
TS2552 [ERROR]: Cannot find name 'consol'. Did you mean 'console'?
consol.log("hello world!");
~~~~~~
at [WILDCARD]/038_checkjs.js:2:1
'console' is declared here.
declare var console: Console;
~~~~~~~
at [WILDCARD]
TS2552 [ERROR]: Cannot find name 'Foo'. Did you mean 'foo'?
const foo = new Foo();
~~~
at [WILDCARD]/038_checkjs.js:5:17
'foo' is declared here.
const foo = new Foo();
~~~
at [WILDCARD]/038_checkjs.js:5:7
Found 2 errors.
error: Type checking failed.