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
When using the option --detect-unused-files-from path alias(es) defined in tsconfig.json are not respected.
--detect-unused-files-from
tsconfig.json
{ "compilerOptions": { "paths": { "~/*": [ "./src/*" ] } } }
// ./src/index.ts import { someObj } from '~/depA'
./src/depA.ts will be returned as an unused file.
./src/depA.ts
The text was updated successfully, but these errors were encountered:
acrazing
No branches or pull requests
When using the option
--detect-unused-files-from
path alias(es) defined intsconfig.json
are not respected../src/depA.ts
will be returned as an unused file.The text was updated successfully, but these errors were encountered: