diff options
Diffstat (limited to 'deno_typescript/lib.rs')
-rw-r--r-- | deno_typescript/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deno_typescript/lib.rs b/deno_typescript/lib.rs index 7977b7cfe..9056fd903 100644 --- a/deno_typescript/lib.rs +++ b/deno_typescript/lib.rs @@ -245,7 +245,7 @@ pub fn get_asset(name: &str) -> Option<&'static str> { }; } match name { - "bundle_loader.js" => Some(include_str!("bundle_loader.js")), + "system_loader.js" => Some(include_str!("system_loader.js")), "bootstrap.ts" => Some("console.log(\"hello deno\");"), "typescript.d.ts" => inc!("typescript.d.ts"), "lib.esnext.d.ts" => inc!("lib.esnext.d.ts"), |