Since only arguments sent in to tsc-files ending with .ts or .tsx will be filtered out (thus not sent to tsc) you can't send in general globs without file endings. So this doesnt work:
'*.ts': ['tsc-files --noEmit types/**/*']
you have to do add the file ending, like this for example
'*.ts': ['tsc-files --noEmit types/**/*.d.ts']
I guess tsc-files could resolve the glob and filter based on that instead of the string argument?
Since only arguments sent in to
tsc-files
ending with .ts or .tsx will be filtered out (thus not sent totsc
) you can't send in general globs without file endings. So this doesnt work:you have to do add the file ending, like this for example
I guess
tsc-files
could resolve the glob and filter based on that instead of the string argument?