File tree 4 files changed +3
-15
lines changed
4 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ ts_sources = [
56
56
" ../js/os.ts" ,
57
57
" ../js/performance.ts" ,
58
58
" ../js/permissions.ts" ,
59
- " ../js/plugins.d.ts" ,
60
59
" ../js/process.ts" ,
61
60
" ../js/read_dir.ts" ,
62
61
" ../js/read_file.ts" ,
Original file line number Diff line number Diff line change 1
1
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2
+ // TODO(ry) Combine this implementation with //deno_typescript/compiler_main.js
2
3
3
4
/// <reference types="../third_party/node_modules/typescript/lib/typescript.d.ts"/>
4
5
@@ -35,7 +36,7 @@ enum MediaType {
35
36
const console = new Console ( core . print ) ;
36
37
window . console = console ;
37
38
window . workerMain = workerMain ;
38
- export default function denoMain ( ) : void {
39
+ function denoMain ( ) : void {
39
40
os . start ( true , "TS" ) ;
40
41
}
41
42
window [ "denoMain" ] = denoMain ;
Original file line number Diff line number Diff line change 1
1
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2
2
3
- // eslint-disable-next-line @typescript-eslint/no-triple-slash-reference
4
- /// <reference path="./plugins.d.ts" />
5
-
6
3
import "./globals.ts" ;
7
4
8
5
import { assert , log } from "./util.ts" ;
@@ -20,7 +17,7 @@ import * as deno from "./deno.ts";
20
17
21
18
const { console } = window ;
22
19
23
- export default function denoMain (
20
+ function denoMain (
24
21
preserveDenoNamespace : boolean = true ,
25
22
name ?: string
26
23
) : void {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments