This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
0
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-10-31 09:14:20 -04:00
Code
Issues
Wiki
Activity
46b892ad37
denoland-deno
/
cli
/
tests
/
ts_import_from_js.js
4 lines
96 B
JavaScript
Raw
Normal View
History
Unescape
Escape
fix: several regressions in TS compiler (#6177) This commit fixes several regressions in TS compiler: * double compilation of same module during same process run * compilation of JavaScript entry point with non-JS imports * unexpected skip of emit during compilation Additional checks were added to ensure "allowJs" setting is used in TS compiler if JavaScript has non-JS dependencies.
2020-06-10 10:02:41 -04:00
import
{
printHello
}
from
"./ts_import_from_js.deps.js"
;
printHello
(
)
;
console
.
log
(
"success"
)
;
Copy permalink