diff options
Diffstat (limited to 'cli/tsc_config.rs')
-rw-r--r-- | cli/tsc_config.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/tsc_config.rs b/cli/tsc_config.rs index a86b549bc..63538d49f 100644 --- a/cli/tsc_config.rs +++ b/cli/tsc_config.rs @@ -1,9 +1,10 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; +use deno_core::serde_json; +use deno_core::serde_json::Value; use jsonc_parser::JsonValue; use serde::Deserialize; -use serde_json::Value; use std::collections::HashMap; use std::fmt; use std::str::FromStr; @@ -178,7 +179,7 @@ pub fn parse_config( #[cfg(test)] mod tests { use super::*; - use serde_json::json; + use deno_core::serde_json::json; #[test] fn test_json_merge() { |