diff options
Diffstat (limited to 'src/resolver/tsconfig_json.zig')
-rw-r--r-- | src/resolver/tsconfig_json.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resolver/tsconfig_json.zig b/src/resolver/tsconfig_json.zig index bbd58f900..2d936dcf8 100644 --- a/src/resolver/tsconfig_json.zig +++ b/src/resolver/tsconfig_json.zig @@ -270,14 +270,14 @@ pub const TSConfigJSON = struct { } } - if (isDebug and has_base_url) { + if (Environment.isDebug and has_base_url) { std.debug.assert(result.base_url.len > 0); } var _result = allocator.create(TSConfigJSON) catch unreachable; _result.* = result; - if (isDebug and has_base_url) { + if (Environment.isDebug and has_base_url) { std.debug.assert(_result.base_url.len > 0); } return _result; |