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

feat: switch config files from .js to .mjs, env.js to env.ts and next.config.js to next.config.ts #2085

Closed
wants to merge 9 commits into from

Conversation

MaKTaiL
Copy link
Contributor

@MaKTaiL MaKTaiL commented Mar 26, 2025

Closes #2082

✅ Checklist

  • I have followed every step in the contributing guide (updated 2022-10-06).
  • The PR title follows the convention we established conventional-commit
  • I performed a functional test on my final commit

Changelog

  • Switch .js config files to .mjs
  • Switch env.js files to env.ts
  • Switch next.config.js to next.config.ts

The changes were made to follow the new conventions used in create-next-app.


Screenshots

Before:

image

After:

image

💯

Copy link

changeset-bot bot commented Mar 26, 2025

🦋 Changeset detected

Latest commit: 4850f67

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
create-t3-app Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link

vercel bot commented Mar 26, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
create-t3-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 27, 2025 7:09pm

Copy link
Member

@juliusmarminge juliusmarminge left a comment

Choose a reason for hiding this comment

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

.mjs is redundant when using type: module

also I don't like advocating for ts config when you can't do ESM in them...

@MaKTaiL
Copy link
Contributor Author

MaKTaiL commented Mar 27, 2025

.mjs is redundant when using type: module

also I don't like advocating for ts config when you can't do ESM in them...

create-next-app is currently using both .mjs and next.config.ts (even with type module)

In my opinion we should switch it as well to make it standard.

@juliusmarminge
Copy link
Member

create-next-app is currently using both .mjs and next.config.ts (even with type module)

doesn't mean it's right ;) for example you can't do ESM in ts configs:

#2082 (comment)

@MaKTaiL
Copy link
Contributor Author

MaKTaiL commented Mar 28, 2025

create-next-app is currently using both .mjs and next.config.ts (even with type module)

doesn't mean it's right ;) for example you can't do ESM in ts configs:

#2082 (comment)

Alright, closing this for now.

@MaKTaiL MaKTaiL closed this Mar 28, 2025
@MaKTaiL
Copy link
Contributor Author

MaKTaiL commented Mar 28, 2025

@juliusmarminge This works:

image
image

I have also understood the downside of using .mjs directly. I'll keep this PR closed as changing these files is not at all necessary for now. Thanks for the explanation. 😉

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.

feat: Use TypeScript Next.js config (next.config.ts)
2 participants