summaryrefslogtreecommitdiff
path: root/js/assets.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-03-08 13:56:56 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-03-07 21:56:56 -0500
commit24d6bf6aeb2b9ac929808e2b8ae4cd5e844a9f8b (patch)
tree45047054bad41f3e27ae51759d5055879af0b243 /js/assets.ts
parentcd1992aeaab92c4446ac289bced3ec548050467d (diff)
Remove 'deno' builtin module (#1895)
Diffstat (limited to 'js/assets.ts')
-rw-r--r--js/assets.ts8
1 files changed, 1 insertions, 7 deletions
diff --git a/js/assets.ts b/js/assets.ts
index 773612b26..18bf97548 100644
--- a/js/assets.ts
+++ b/js/assets.ts
@@ -39,9 +39,6 @@ import libEsnextBigintDts from "/third_party/node_modules/typescript/lib/lib.esn
import libEsnextDts from "/third_party/node_modules/typescript/lib/lib.esnext.d.ts!string";
import libEsnextIntlDts from "/third_party/node_modules/typescript/lib/lib.esnext.intl.d.ts!string";
import libEsnextSymbolDts from "/third_party/node_modules/typescript/lib/lib.esnext.symbol.d.ts!string";
-
-// Static definitions
-import typescriptDts from "/third_party/node_modules/typescript/lib/typescript.d.ts!string";
// tslint:enable:max-line-length
// @internal
@@ -78,8 +75,5 @@ export const assetSourceCode: { [key: string]: string } = {
"lib.esnext.asynciterable.d.ts": libEsnextAsynciterablesDts,
"lib.esnext.bigint.d.ts": libEsnextBigintDts,
"lib.esnext.intl.d.ts": libEsnextIntlDts,
- "lib.esnext.symbol.d.ts": libEsnextSymbolDts,
-
- // Static definitions
- "typescript.d.ts": typescriptDts
+ "lib.esnext.symbol.d.ts": libEsnextSymbolDts
};