From a130248687fd36a77785fd41b4ce0e25af6b595e Mon Sep 17 00:00:00 2001 From: Joakim Carlstein Date: Mon, 8 Jan 2024 10:19:37 +0100 Subject: [PATCH] docs: update loader plugin intro after adding TypeScript support --- docs/src/content/docs/plugins/loaders/index.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/content/docs/plugins/loaders/index.mdx b/docs/src/content/docs/plugins/loaders/index.mdx index bca094b..01101eb 100644 --- a/docs/src/content/docs/plugins/loaders/index.mdx +++ b/docs/src/content/docs/plugins/loaders/index.mdx @@ -7,7 +7,7 @@ import Link from '@components/Link.astro'; Loader plugins are used to transform any file type into a JavaScript function that will be called when the migration file is executed. -Out of the box, Emigrate supports the following file extensions: `.js`, `.cjs` and `.mjs`. And both CommonJS and ES Modules are supported. See the Default Loader for more information. +Out of the box, Emigrate supports the following file extensions: `.js`, `.cjs`, `.mjs`, `.ts`, `.cts` and `.mts`. And both CommonJS and ES Modules are supported. See the Default Loader for more information. ## Using a loader plugin @@ -21,14 +21,14 @@ Or set it up in your configuration file, see default loader will be used for all other file types, and doesn't need to be specified. ::: ## Available Loader Plugins - +