summaryrefslogtreecommitdiff
path: root/js/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/main.ts')
-rw-r--r--js/main.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/main.ts b/js/main.ts
index 830c77eb6..887d6b3c2 100644
--- a/js/main.ts
+++ b/js/main.ts
@@ -1,5 +1,6 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-// tslint:disable-next-line:no-reference
+
+// eslint-disable-next-line @typescript-eslint/no-triple-slash-reference
/// <reference path="./plugins.d.ts" />
import "./globals";
@@ -17,8 +18,7 @@ import * as deno from "./deno";
// TODO(kitsonk) remove with `--types` below
import libDts from "gen/lib/lib.deno_runtime.d.ts!string";
-/* tslint:disable-next-line:no-default-export */
-export default function denoMain() {
+export default function denoMain(): void {
const startResMsg = os.start();
setVersions(startResMsg.denoVersion()!, startResMsg.v8Version()!);