Skip to content

Commit f196c6d

Browse files
authored
Update transpilers.md
1 parent ab373d9 commit f196c6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/docs/transpilers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ sourcemap support, and global ts-node CLI. Plugins automatically derive an appro
1717
The `transpiler` option allows using third-party transpiler plugins with ts-node. `transpiler` must be given the
1818
name of a module which can be `require()`d. The built-in `swc` plugin is exposed as `ts-node/transpilers/swc`.
1919

20-
For example, to use a hypothetical "speedy-ts-compiler", first install it into your project: `npm install speedy-ts-compiler`
20+
For example, to use a hypothetical "@cspotcode/fast-ts-compiler", first install it into your project: `npm install @cspotcode/fast-ts-compiler`
2121

2222
Then add the following to your tsconfig:
2323

2424
```json title="tsconfig.json"
2525
{
2626
"ts-node": {
2727
"transpileOnly": true,
28-
"transpiler": "speedy-ts-compiler"
28+
"transpiler": "@cspotcode/fast-ts-compiler"
2929
}
3030
}
3131
```

0 commit comments

Comments
 (0)