Using TypeScript 4.9 with Next.js 12

This page summarizes the projects mentioned and recommended in the original post on dev.to

Civic Auth - Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.
www.civic.com
featured
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
  1. yarn

    The 1.x line is frozen - features and bugfixes now happen on https://github.com/yarnpkg/berry

    Unfortunately, as I found out, yarn's resolutions property has a long history of not playing well with optionalDependencies: anything placed into resolutions is treated as required and will abruptly fail to install if it is, for example, a platform-specific package appropriate for your deploy environment but not your dev environment or vice versa, as is the case here.

  2. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.

    Civic Auth logo
  3. synp

    Convert yarn.lock to package-lock.json and vice versa

    Since this particular codebase also relied on yarn, this warranted an impromptu switch to npm to see how overrides would fare. Fortunately, synp exists to migrate between package lockfile formats. (npm also evidently supports yarn.lock files directly, which I only found out after converting, so I didn't put that to the test.)

  4. swc

    Rust-based platform for the Web

    Unfortunately, the moment I tried to use anything 4.9-specific, things went sideways rather quickly, as the dev server and build command didn't recognize the feature, due to their use of SWC. Since Next.js 12 hasn't had new releases for a while, the accompanying version of SWC is now significantly out-of-date.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Show HN: Most votes on a GitHub issue I've seen (yarnpkg)

    1 project | news.ycombinator.com | 26 Jun 2024
  • Set up your own LMQL environment.

    3 projects | /r/LocalLLaMA | 7 Dec 2023
  • Lockfile merge conflicts, how to handle it correctly?

    3 projects | dev.to | 14 Jul 2023
  • Yarn Install Broken

    1 project | /r/node | 15 Apr 2023
  • Benchmarks of JavaScript Package Managers

    1 project | news.ycombinator.com | 28 Feb 2023

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?