From 345f0fbe5cdaa71af067c7072537f1823fe4ada5 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Fri, 10 Dec 2021 09:12:21 +1100 Subject: feat(cli): update to TypeScript 4.5 (#12410) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk --- cli/tests/testdata/034_onload/imported.ts | 1 + cli/tests/testdata/034_onload/main.ts | 1 + cli/tests/testdata/034_onload/nest_imported.ts | 1 + 3 files changed, 3 insertions(+) (limited to 'cli/tests/testdata/034_onload') diff --git a/cli/tests/testdata/034_onload/imported.ts b/cli/tests/testdata/034_onload/imported.ts index bac6cf5fa..a176d4200 100644 --- a/cli/tests/testdata/034_onload/imported.ts +++ b/cli/tests/testdata/034_onload/imported.ts @@ -1,3 +1,4 @@ +// deno-lint-ignore-file no-window-prefix import { assert } from "../../../../test_util/std/testing/asserts.ts"; import "./nest_imported.ts"; diff --git a/cli/tests/testdata/034_onload/main.ts b/cli/tests/testdata/034_onload/main.ts index 42df21c16..df6713105 100644 --- a/cli/tests/testdata/034_onload/main.ts +++ b/cli/tests/testdata/034_onload/main.ts @@ -1,3 +1,4 @@ +// deno-lint-ignore-file no-window-prefix no-prototype-builtins import { assert } from "../../../../test_util/std/testing/asserts.ts"; import "./imported.ts"; diff --git a/cli/tests/testdata/034_onload/nest_imported.ts b/cli/tests/testdata/034_onload/nest_imported.ts index 259e505a2..e461dd9b1 100644 --- a/cli/tests/testdata/034_onload/nest_imported.ts +++ b/cli/tests/testdata/034_onload/nest_imported.ts @@ -1,3 +1,4 @@ +// deno-lint-ignore-file no-window-prefix import { assert } from "../../../../test_util/std/testing/asserts.ts"; const handler = (e: Event) => { -- cgit v1.2.3