From c570829c0fc665e3edfbc7209090e87f7862b434 Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Tue, 25 Jul 2023 13:27:43 -0400 Subject: [PATCH] Fix link to node's docs --- website/docs/commonjs-vs-native-ecmascript-modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/commonjs-vs-native-ecmascript-modules.md b/website/docs/commonjs-vs-native-ecmascript-modules.md index b433438dd..4804c96fa 100644 --- a/website/docs/commonjs-vs-native-ecmascript-modules.md +++ b/website/docs/commonjs-vs-native-ecmascript-modules.md @@ -50,7 +50,7 @@ If you must keep `"module": "ESNext"` for `tsc`, webpack, or another build tool, ## Native ECMAScript modules -[Node's ESM loader hooks](https://nodejs.org/api/esm.html#esm_experimental_loaders) are [**experimental**](https://nodejs.org/api/documentation.html#documentation_stability_index) and subject to change. ts-node's ESM support is as stable as possible, but it relies on APIs which node can *and will* break in new versions of node. Thus it is not recommended for production. +[Node's ESM loader hooks](https://nodejs.org/api/esm.html#loaders) are [**experimental**](https://nodejs.org/api/documentation.html#documentation_stability_index) and subject to change. ts-node's ESM support is as stable as possible, but it relies on APIs which node can *and will* break in new versions of node. Thus it is not recommended for production. For complete usage, limitations, and to provide feedback, see [#1007](https://github.com/TypeStrong/ts-node/issues/1007).