Skip to content

Commit 604b2aa

Browse files
committed
docs tweak ugh
1 parent 3333005 commit 604b2aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/docs/performance.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ These tricks will make ts-node faster.
66

77
## Skip typechecking
88

9-
It is often better to typecheck as part of your tests or linting. You can use `tsc --noEmit` to do this. In these cases, ts-node can skip typechecking making it much faster.
9+
It is often better to typecheck as part of your tests or linting. You can run `tsc --noEmit` to do this. In these cases, ts-node can skip typechecking, making it much faster.
1010

1111
To skip typechecking in ts-node, do one of the following:
1212

@@ -16,7 +16,7 @@ To skip typechecking in ts-node, do one of the following:
1616

1717
## With typechecking
1818

19-
If you absolutely must use ts-node for typechecking:
19+
If you absolutely must typecheck in ts-node:
2020

2121
* Avoid dynamic `require()` which may trigger repeated typechecking; prefer `import`
2222
* Try with and without `--files`; one may be faster depending on your project

0 commit comments

Comments
 (0)