From 0939fe5a4e4daf3f73247254ef14b47267c9fc68 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sun, 21 May 2023 15:07:30 -0400 Subject: [PATCH] Remove `@types/ember-qunit` because `ember-qunit` provides its own types now. Without this change, new projects using ember-cli-typescript have errors running `tsc`. See also, other work-arounds: https://github.com/embroider-build/addon-blueprint/pull/123 --- ts/blueprints/ember-cli-typescript/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/ts/blueprints/ember-cli-typescript/index.js b/ts/blueprints/ember-cli-typescript/index.js index 0c2e37c0f..fa593c7b6 100644 --- a/ts/blueprints/ember-cli-typescript/index.js +++ b/ts/blueprints/ember-cli-typescript/index.js @@ -184,7 +184,6 @@ module.exports = { } if (this._has('ember-cli-qunit') || this._has('ember-qunit')) { - packages.push('@types/ember-qunit'); packages.push('@types/qunit'); }