Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for @tsconfig/ember 3.0.0 #614

Merged
merged 3 commits into from
Aug 2, 2023
Merged

Add support for @tsconfig/ember 3.0.0 #614

merged 3 commits into from
Aug 2, 2023

Conversation

mayatron
Copy link

Jeremy Matthews Taylor added 3 commits July 26, 2023 10:29
- Add `@tsconfig/[email protected]` to `test-app`
- Fix minor TypeScript issues in tests
- Addresses #613
- Update `ember-try` with new scenario to cover latest TypeScript 5 and `@tsconfig/ember` configuration
Copy link
Collaborator

@ro0gr ro0gr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall looks great!

I'd just like to keep testing against the pre-existing moduleResolution: "node" + add the new moduleResolution test which is broken now.

"compilerOptions": {
"target": "es2020",
"allowJs": true,
"moduleResolution": "node",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like to make sure we still support the moduleResolution: "node". Also, I think leaving this test app in a "legacy" state makes sense until we decide to increase the bottom line of the support matrix.

Maybe a better way to test would be just to create a new cutting-edge test app, with just a single dummy test that imports some ember-cli-page-object module + tsc as a test.

...Or, alternatively, we could create a "legacy" test app with that dummy test + tsc, but then I think it makes sense to upgrade the current test app to the latest, which seems to be just more work to do 🤔

Thoughts?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The @tsconfig/ember 2.0.0 version has moduleResolution set to node (see here) so there's not really a change in that respect. It only changes the value to bundler with the 3.0.0 version (here).

Thoughts?

@@ -94,7 +94,7 @@ module('create', function () {
// @ts-expect-error violate types to check if it fails in weakly-typed envs
create('');
assert.true(false, 'should error');
} catch (e) {
} catch (e: any) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we have Error instead of any?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can't use the type Error here, due to:

Catch clause variable type annotation must be 'any' or 'unknown' if specified.ts(1196)

This is an annoying issue with TypeScript, see a long discussion thread here. Alternatively, and probably more correct, we can type this as unknown.

@@ -36,6 +36,7 @@
"@embroider/test-setup": "^1.8.0",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"@tsconfig/ember": "^2.0.0",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks like we should remove this from the package.json or from the ember-try scenario. I tend to remove it from the package.json in scope of the current test-app

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment above.

@mayatron
Copy link
Author

mayatron commented Aug 1, 2023

@ro0gr let me know if you have any questions or feedback about my comments. Happy to discuss and iterate with you on this!

@ro0gr
Copy link
Collaborator

ro0gr commented Aug 1, 2023

@mayatron I do like your change. I'm going to merge and release it tomorrow.

@ro0gr ro0gr merged commit a7b6d8f into san650:master Aug 2, 2023
14 checks passed
@ro0gr
Copy link
Collaborator

ro0gr commented Aug 2, 2023

Just published it as 2.1.0. Thanks for your effort!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants