diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index cec407eee..a9bf15ca7 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -46,8 +46,8 @@ export default defineConfig({ { text: 'Integration', items: [ - { text: 'Node.js', link: '/node' }, { text: 'VSCode', link: '/vscode' }, + { text: 'Node.js', link: '/node' }, ] }, { diff --git a/docs/index.md b/docs/index.md index 164918c55..e128270b0 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,6 @@ # What is _tsx_? -`tsx` stands for _TypeScript Execute_, and it's a TypeScript enhanced Node.js. +`tsx` stands for _TypeScript Execute_, and it's a simple command to run TypeScript in Node.js. Because `tsx` is basically an alias to `node`, you can use it the same way: @@ -16,7 +16,7 @@ tsx file.js ``` -Since it's Node.js underneath, all command-line flags are supported. Use `tsx` just like you would use `node`! +Since it's Node.js underneath, all command-line flags are supported. Use `tsx` as you would use `node`! ## Features @@ -55,7 +55,7 @@ TypeScript & ESM transformations are handled by [esbuild](https://esbuild.github - Only [certain `tsconfig.json` properties](https://esbuild.github.io/content-types/#tsconfig-json) are supported - [`emitDecoratorMetadata`](https://www.typescriptlang.org/tsconfig#emitDecoratorMetadata) is not supported -For details, refer to esbuild's [JavaScript caveats](https://esbuild.github.io/content-types/#javascript-caveats) and [TypeScript caveats](https://esbuild.github.io/content-types/#typescript-caveats) documentation. +For details, see esbuild's [JavaScript caveats](https://esbuild.github.io/content-types/#javascript-caveats) and [TypeScript caveats](https://esbuild.github.io/content-types/#typescript-caveats) documentation.