diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-22 17:17:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-22 17:17:26 -0400 |
commit | e7cab715749e4c5000c24ffeade1ef915d15a68d (patch) | |
tree | 3ddb749342a415112f3bf4b1f3aa7156dca9c8af /js/assets.ts | |
parent | c5bb412933d750c80c93eaa4840eb3bbac33bc2c (diff) |
runtime.ts refactor into compiler.ts (#564)
Adds compiler_test.ts
Diffstat (limited to 'js/assets.ts')
-rw-r--r-- | js/assets.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/assets.ts b/js/assets.ts index 425ef3fc2..3b5691bc7 100644 --- a/js/assets.ts +++ b/js/assets.ts @@ -7,6 +7,7 @@ // tslint:disable:max-line-length // Generated definitions +import compilerDts from "gen/js/compiler.d.ts!string"; import consoleDts from "gen/js/console.d.ts!string"; import denoDts from "gen/js/deno.d.ts!string"; import globalsDts from "gen/js/globals.d.ts!string"; @@ -55,6 +56,7 @@ import fetchTypesDts from "/js/fetch_types.d.ts!string"; // prettier-ignore export const assetSourceCode: { [key: string]: string } = { // Generated definitions + "compiler.d.ts": compilerDts, "console.d.ts": consoleDts, "deno.d.ts": denoDts, "globals.d.ts": globalsDts, |