diff --git a/docs/typescript.mdx b/docs/typescript.mdx
index 0e3b761089..e74bf6725a 100644
--- a/docs/typescript.mdx
+++ b/docs/typescript.mdx
@@ -48,11 +48,11 @@ When using our JSX factory, TypeScript only allows the `css` prop on components
### With the Babel plugin
-[`@emotion/babel-plugin`](/docs/babel) is completely optional for TypeScript users. If you are not already using Babel, you probably shouldn't add it to your build tooling unless you truly need one of the features offered by `@emotion/babel-plugin`. On the other hand, there's no reason not to use `@emotion/babel-plugin` if you are already using Babel to transpile your TypeScript code.
+[`@emotion/babel-plugin`](/docs/babel) is completely optional for TypeScript users. If you are not already using Babel, you probably shouldn't add it to your build tooling unless you truly need one of the features offered by this plugin. On the other hand, there's no reason not to use `@emotion/babel-plugin` if you are already using Babel to transpile your TypeScript code.
### With the old JSX transform
-If you are unable to upgrade to the `react-jsx` transform, you will need to specify the JSX factory at the top of every file:
+If you are unable to upgrade to the `react-jsx` transform (e.g. while using NextJS, which enforces `"jsx": "preserve"`), you may need to specify the JSX factory at the top of every file:
```tsx
/** @jsx jsx */
@@ -61,7 +61,7 @@ import { jsx } from '@emotion/react'
As a result, you may be not able to use the shorthand syntax `<>>` for React fragments, but you can still use `