Our team is still at 3.28 but is working towards 4.0. We'd like to remove our ember-cli-typescript dependency in preparation for glint. So far, I can see that the following changes need to be made to a project:
- Remove
ember-cli-typescriptpackage. - Set
enableTypeScriptTransform: trueinember-cli-build.js
With that, we've opted out of typechecking during build - great! However, I'm wondering if there are any recommendations for running thetscprocess alongsideember serve? We'd still like an asynchronous typecheck taking place during our development.
Thanks 🙏