tsx 3.10.3 → 3.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -171,18 +171,22 @@ argv: [ 'hello' ]
171
171
 
172
172
  ## Dependencies
173
173
 
174
- - [@esbuild-kit/esm-loader](https://github.com/esbuild-kit/esm-loader) - Node.js Loader to transform TypeScript to ESM.
174
+ #### [@esbuild-kit/esm-loader](https://github.com/esbuild-kit/esm-loader)
175
+ Node.js Loader to transform TypeScript to ESM.
175
176
 
176
- - [@esbuild-kit/cjs-loader](https://github.com/esbuild-kit/cjs-loader) - Node.js `require()` hook to transform TypeScript & ESM to CommonJS.
177
+ #### [@esbuild-kit/cjs-loader](https://github.com/esbuild-kit/cjs-loader)
178
+ Node.js `require()` hook to transform TypeScript & ESM to CommonJS.
177
179
 
178
180
 
179
181
  ## FAQ
180
182
 
181
183
  ### Why is it named `tsx`?
182
184
 
183
- `tsx` stands for "TypeScript execute", similar to [`npx`](https://docs.npmjs.com/cli/v8/commands/npx) ("Node.js package execute").
185
+ `tsx` stands for "TypeScript execute". Mirroring [`npx`](https://docs.npmjs.com/cli/v8/commands/npx), which stands for "Node.js package execute".
184
186
 
185
- It has an unfortunate overlap with React's [TSX/JSX](https://www.typescriptlang.org/docs/handbook/jsx.html), which stands for "JavaScript XML". However, we believe the naming is appropriate for what it does.
187
+ The 3-character package name offers an elegant developer experience, allowing usage like: `npx tsx ...`.
188
+
189
+ Unfortunately, it overlaps with React's [TSX/JSX](https://www.typescriptlang.org/docs/handbook/jsx.html), which stands for "TypeScript XML".
186
190
 
187
191
  ### Does it do type-checking?
188
192