1. Convert Basic Glob Pattern
Background
A developer needs to match all TypeScript files in a source directory for a build process.
Problem
The build system requires a regular expression, but the file pattern is specified in Glob format.
How to use
Enter 'src/**/*.ts' in the Glob Pattern field and ensure globstar support is enabled.
Outcome
The tool outputs a regex that matches files like 'src/app/index.ts' and 'src/lib/utils.ts'.