1pub mod args;
8pub mod build;
9pub use tsz::config;
10pub mod driver;
11pub mod driver_resolution;
12pub mod fs;
13pub mod incremental;
14pub mod locale;
15pub mod project_refs;
16pub mod reporter;
17pub mod trace;
18pub mod tracing_config;
19pub mod watch;
20
21#[cfg(test)]
22#[path = "../tests/args_tests.rs"]
23mod args_tests;
24#[cfg(test)]
25#[path = "../tests/build_tests.rs"]
26mod build_tests;
27#[cfg(test)]
28#[path = "../tests/config_tests.rs"]
29mod config_tests;
30#[cfg(test)]
31#[path = "../tests/driver_tests.rs"]
32mod driver_tests;
33#[cfg(test)]
34#[path = "../tests/driver_tests_ts2307.rs"]
35mod driver_tests_ts2307;
36#[cfg(test)]
37#[path = "../tests/fs_tests.rs"]
38mod fs_tests;
39#[cfg(test)]
40#[path = "../tests/reporter_tests.rs"]
41mod reporter_tests;
42#[cfg(test)]
43#[path = "../tests/tsc_compat_tests.rs"]
44mod tsc_compat_tests;
45#[cfg(test)]
46#[path = "../tests/watch_tests.rs"]
47mod watch_tests;