Prevent circular imports in ts code (#576)

This commit is contained in:
Francesco Borzì 2018-08-25 21:42:49 +02:00 committed by Ryan Dahl
parent 3bcf7e271f
commit 84c38f34ee
12 changed files with 42 additions and 26 deletions

View file

@ -2,7 +2,9 @@
import * as ts from "typescript";
import { assetSourceCode } from "./assets";
import * as deno from "./deno";
import { libdeno, window, globalEval } from "./globals";
import { globalEval } from "./global-eval";
import { libdeno } from "./libdeno";
import { window } from "./globals";
import * as os from "./os";
import { RawSourceMap } from "./types";
import { assert, log, notImplemented } from "./util";