You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like node's [`--experimental-specifier-resolution`](https://nodejs.org/dist/latest-v18.x/docs/api/esm.html#customizing-esm-specifier-resolution-algorithm), but can also be set in your `tsconfig.json` for convenience.
747
-
Requires `esm` to be enabled.
749
+
Requires [`esm`](#esm) to be enabled.
748
750
749
751
*Default:*`explicit`<br/>
750
752
@@ -1059,7 +1061,7 @@ It is often better to use `tsc --noEmit` to typecheck as part of your tests or l
1059
1061
1060
1062
* Enable [swc](#swc)
1061
1063
* This is by far the fastest option
1062
-
* Enable [`transpileOnly`](#options) to skip typechecking without swc
1064
+
* Enable [`transpileOnly`](#transpileonly) to skip typechecking without swc
1063
1065
1064
1066
## With typechecking
1065
1067
@@ -1189,15 +1191,15 @@ sourcemap support, and global ts-node CLI. Plugins automatically derive an appro
1189
1191
The `transpiler` option allows using third-party transpiler plugins with ts-node. `transpiler` must be given the
1190
1192
name of a module which can be `require()`d. The built-in `swc` plugin is exposed as `ts-node/transpilers/swc`.
1191
1193
1192
-
For example, to use a hypothetical "speedy-ts-compiler", first install it into your project: `npm install speedy-ts-compiler`
1194
+
For example, to use a hypothetical "@cspotcode/fast-ts-compiler", first install it into your project: `npm install @cspotcode/fast-ts-compiler`
0 commit comments