From 260a7a004f483ef3361e1793abbb629980d55440 Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Sun, 23 May 2021 15:03:55 -0400 Subject: [PATCH] rebuild readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bb220b94f..1015d6be0 100644 --- a/README.md +++ b/README.md @@ -325,7 +325,7 @@ node --trace-deprecation --abort-on-uncaught-exception -r ts-node/register ./ind ## API -The API includes [additional options](https://typestrong.org/ts-node/api/interfaces/registeroptions.html) not shown here. +The API includes [additional options](https://typestrong.org/ts-node/api/interfaces/RegisterOptions.html) not shown here. # CommonJS vs native ECMAScript modules @@ -666,10 +666,10 @@ Then add the following to your `tsconfig.json`. ### Writing your own integration -To write your own transpiler integration, check our [API docs](https://typestrong.org/ts-node/api/interfaces/transpilermodule.html). +To write your own transpiler integration, check our [API docs](https://typestrong.org/ts-node/api/interfaces/TranspilerModule.html). Integrations are `require()`d, so they can be published to npm. The module must export a `create` function matching the -[`TranspilerModule`](https://typestrong.org/ts-node/api/interfaces/transpilermodule.html) interface. +[`TranspilerModule`](https://typestrong.org/ts-node/api/interfaces/TranspilerModule.html) interface. # Recipes