Patch Release
- fix(telemetry): Avoid getConfig for CRWA #7621 by @Josh-Walker-GM
- fix(generator): add dotAll to Router regex #7605 by @jtoar
- fix(ts): Undo skipLibCheck change #7633 by @dac09
- fix(api): support building .jsx, .tsx files #7638 by @jtoar
- fix:(webAuthn) use
globalThis
, notprocess.env
#7639 by @jtoar
Recommended changes to tsconfigs
Note
If you didn't create a project in the last week, this doesn't apply to you.
In v4.1.0
we shipped with skipLibCheck: true
in the tsconfig templates. If you created a new project in the last week, we recommend that you change this setting back to false
in your web/tsconfig.json
and api/tsconfig.json
files:
{
"compilerOptions": {
"noEmit": true,
- "skipLibCheck": true,
+ "skipLibCheck": false,
Alternatively you can just run yarn rw setup tsconfig --force
, which will replace your existing tsconfigs with the one from the latest template on our repo.