diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-11 11:43:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 11:43:45 -0500 |
commit | 8db853514caae431a0ce91360d854c1b7f3c405f (patch) | |
tree | 4173976ce6c836b715af22c9aeb9f336debb8544 /cli/build.rs | |
parent | e4430400ced48529730a8752c547b613a23c76ce (diff) |
fix(check): regression where config "types" entries caused type checking errors (#18124)
Closes #18117
Closes #18121 (this is just over 10ms faster in a directory one up from
the root folder)
cc @nayeemrmn
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cli/build.rs b/cli/build.rs index 804f1d838..c3fa9fb48 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -178,16 +178,6 @@ mod ts { } #[op] - fn op_cwd() -> String { - "cache:///".into() - } - - #[op] - fn op_exists() -> bool { - false - } - - #[op] fn op_is_node_file() -> bool { false } @@ -254,8 +244,6 @@ mod ts { let tsc_extension = Extension::builder("deno_tsc") .ops(vec![ op_build_info::decl(), - op_cwd::decl(), - op_exists::decl(), op_is_node_file::decl(), op_load::decl(), op_script_version::decl(), |