diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 17:00:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 17:00:28 -0500 |
commit | 0cc90d9246ff2c392457632d5030eaca2ca1ca6f (patch) | |
tree | 64e3a777d0ee2674768390d3124508434441fcf7 /cli/emit.rs | |
parent | d0a4e23ae824baf1994291d8480be29719f1b99a (diff) |
refactor: move lockfile.rs to args module (#16818)
This should be in the `args` folder as it's similar to `config_file`.
Diffstat (limited to 'cli/emit.rs')
-rw-r--r-- | cli/emit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/emit.rs b/cli/emit.rs index f2d890adc..766524187 100644 --- a/cli/emit.rs +++ b/cli/emit.rs @@ -4,9 +4,9 @@ //! populate a cache, emit files, and transform a graph into the structures for //! loading into an isolate. -use crate::args::config_file::IgnoredCompilerOptions; use crate::args::ConfigFile; use crate::args::EmitConfigOptions; +use crate::args::IgnoredCompilerOptions; use crate::args::TsConfig; use crate::cache::EmitCache; use crate::cache::FastInsecureHasher; |