diff --git a/docs/jest_test.md b/docs/jest_test.md
index d8bedaf..22b0367 100644
--- a/docs/jest_test.md
+++ b/docs/jest_test.md
@@ -26,7 +26,7 @@ Supports updating snapshots with `bazel run {name}_update_snapshots` if `snapsho
| :------------- | :------------- | :------------- |
| name | A unique name for this target. | none |
| node_modules | Label pointing to the linked node_modules target where jest is linked, e.g. `//:node_modules`. `jest-cli` must be linked into the node_modules supplied. `jest-junit` is also required by default when `auto_configure_reporters` is True.
NB: Only the required npm packages are included in data from `//:node_modules`. Other npm packages are not included as inputs. | none |
-| config | "Optional Jest config file. See https://jestjs.io/docs/configuration.
Supported config file types are ".js", ".cjs", ".mjs", ".json" which come from https://jestjs.io/docs/configuration minus TypeScript since we this rule extends from the configuration. TypeScript jest configs should be transpiled before being passed to jest_test with [rules_ts](https://github.com/aspect-build/rules_ts). | `None` |
+| config | "Optional Jest config file. See https://jestjs.io/docs/configuration.
Supported config file types are ".js", ".cjs", ".mjs", ".ts", ".cts", ".json" which come from https://jestjs.io/docs/configuration. TypeScript jest configs can either be transpiled before being passed to jest_test with [rules_ts](https://github.com/aspect-build/rules_ts), or loaded natively with Node's [type stripping](https://nodejs.org/en/learn/typescript/run-natively) functionality. | `None` |
| data | Runtime dependencies of the Jest test.
This should include all test files, configuration files & files under test. | `[]` |
| snapshots | If True, a `{name}_update_snapshots` binary target is generated that will update all existing `__snapshots__` directories when `bazel run`. This is the equivalent to running `jest -u` or `jest --updateSnapshot` outside of Bazel, except that new `__snapshots__` will not automatically be created on update. To bootstrap a new `__snapshots__` directory, you can create an empty one and then run the `{name}_update_snapshots` target to populate it.
If the name of the snapshot directory is not the default `__snapshots__` because of a custom snapshot resolver, you can specify customize the snapshot directories with a `glob` or a static list. For example,
jest_test(
name = "test",
node_modules = "//:node_modules",
config = "jest.config.js",
data = [
"greetings/greetings.js",
"greetings/greetings.test.js",
"link/link.js",
"link/link.test.js",
],
snapshots = glob(["**/__snaps__"], exclude_directories = 0),
) snapshots = [
"greetings/__greetings_snaps__",
"link/__link_snaps__",
]