I am facing an issue with Typescript not working properly when using blob patterns in my tsconfig.json file. Below is the content of my tsconfig.json:
{
"compileOnSave": false,
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../../dist/out-tsc-e2e",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../../node_modules/@types"
]
},
"files": [
"../../test/**/*.ts"
]
}