diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-08-31 20:12:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 20:12:24 +0200 |
commit | c82c3b982edfaade0b64119bb00183966b8ab749 (patch) | |
tree | 5b257aacc41d7a684c4332c96e4aa72d40094dee /cli/main.rs | |
parent | 71f0171ab05c283a0148ddb28c988f50acf9d989 (diff) |
refactor: Compiler config in Rust (#7228)
* port tsc_config.rs
* cleanup options
* bring back allowNonTsExtension
* try
* fix test
* fix test2
* move config for bundling
* remove Transpile compile request
* remove dead code
* remove more dead code
* remove checkJs regex
* fix
* handle config str for runtime APIs
* lint
* runtimeCompile config in Rust
* runtimeCompile and runtimeTranspile config in Rust
* fix
* remove lint supression
* upgrade: jsonc-parser 0.13.0
* remove unneeded to_string()
* upgrade: jsonc-parser 0.14.0
* remove AsRef<str>
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index b19465713..d6b74d8a2 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -63,6 +63,7 @@ mod test_runner; mod text_encoding; mod tokio_util; mod tsc; +mod tsc_config; mod upgrade; pub mod version; mod web_worker; |