This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
1
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-11-23 15:16:54 -05:00
Code
Issues
Packages
1
Wiki
Activity
aa81bc73d9
denoland-deno
/
std
/
tsconfig_test.json
7 lines
98 B
JSON
Raw
Normal View
History
Unescape
Escape
feat: add --no-check option (#6456) This commit adds a "--no-check" option to following subcommands: - "deno cache" - "deno info" - "deno run" - "deno test" The "--no-check" options allows to skip type checking step and instead directly transpiles TS sources to JS sources. This solution uses `ts.transpileModule()` API and is just an interim solution before implementing it fully in Rust.
2020-07-08 05:26:39 -04:00
{
"compilerOptions"
:
{
feat(unstable): enable importsNotUsedAsValues by default (#7413)
2020-09-11 10:22:10 -04:00
"isolatedModules"
:
true
,
"importsNotUsedAsValues"
:
"error"
feat: add --no-check option (#6456) This commit adds a "--no-check" option to following subcommands: - "deno cache" - "deno info" - "deno run" - "deno test" The "--no-check" options allows to skip type checking step and instead directly transpiles TS sources to JS sources. This solution uses `ts.transpileModule()` API and is just an interim solution before implementing it fully in Rust.
2020-07-08 05:26:39 -04:00
}
}
Copy permalink