I am setting up typescript/karma and I am looking to match all files within a directory using globbing pattern.
Assume that my directory structure is as follows:
src
webapp
core
ext
libs
Now, I want to target all files in the libs
folder without specifying the full path. Is the following globbing pattern correct?
**/webapp/libs/**
This is specifically for configuring typescript settings:
The "files" property requires a list of file paths relative or absolute. The "include" and "exclude" properties need a list of file patterns resembling globs. These are the supported wildcard characters:
- * matches zero or more characters (excluding directories), ? matches any single character (excluding directories), **/ matches all subdirectories recursively