We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our include in tsconfig.json looks something like this:
include
tsconfig.json
"include": [ "app/**/*", "tests/**/*", "types/**/*", "lib/library-abc/**/*", "foo/**/*" ]
We dont want app/**/* and tests/**/* to be included when tsc-files runs in the git hook but the other ones have types needed for parts of our project.
app/**/*
tests/**/*
tsc-files
One solution could be that you could send in to tsc-files which includes to remove rather than removing all includes, like is done now.
Maybe something like:
tsc-files --remove-include="app/**/*" --remove-include="tests/**/*"`
or
tsc-files --remove-include="app/**/*,tests/**/*"`
The text was updated successfully, but these errors were encountered:
Same as #20.
Sorry, something went wrong.
No branches or pull requests
Our
include
intsconfig.json
looks something like this:We dont want
app/**/*
andtests/**/*
to be included whentsc-files
runs in the git hook but the other ones have types needed for parts of our project.One solution could be that you could send in to
tsc-files
which includes to remove rather than removing all includes, like is done now.Maybe something like:
or
The text was updated successfully, but these errors were encountered: