summaryrefslogtreecommitdiff
path: root/cli/tests/integration/check_tests.rs
AgeCommit message (Collapse)Author
2022-07-12perf: use emit from swc instead of tsc (#15118)David Sherret
2022-06-23fix(check): ignore TS2306 (#14940)Nayeem Rahman
Fixes a regression where this type checking error was being surfaced in certain scenarios.
2022-06-15fix(check): use "moduleDetection": "force" (#14875)Nayeem Rahman
2022-04-11feat: Add "deno check" subcommand for type checking (#14072)Bartek IwaƄczuk
This commit adds new "deno check" subcommand. Currently it is an alias for "deno cache" with the difference that remote modules don't emit TS diagnostics by default. Prints warning for "deno run" subcommand if "--check" flag is not present and there's no "--no-check" flag. Adds "DENO_FUTURE_CHECK" env variable that allows to opt into new behavior now.