Closed neenjaw closed 2 years ago
Hey! Thanks for the issue! You can make a PR and we will test it, but at a first glance it looks cool!
Hey @KostkaBrukowa!
I have opened a PR at #45 as requested. Looking forward to your review and testing. If there is anything needed, let me know. 😄
First of all, this is a great plugin, thanks for creating and maintaining this project.
My organization maintains a monorepo whose code has evolved over a number of years from
vanilla js
->FlowJS
-> nowTypescript
. That said we have been working to correct and improve the codebase incrementally as the code is owned over a large number of developers -- this tool fits our use-case exactly to do these improvements incrementally.So our monorepo structure (with respect to typescript) looks like:
The first level one is used only at this point for tooling resolution (vscode language server, etc), and our build only occurs at the second level tsconfig.
When trying to add
--project ./frontend/tsconfig.json
I noticed that the plugin was not able to find our typescript project. Doing a bit of code spelunking it appears that the root directory used is the root location for the plugin even if specified within a nested tsconfig.I forked the project and have a set of minimal changes which would add non-root project support (via the tsc --project flag), wondering if this would be a useful addition to your codebase?
I have the diff of changes here in this branch: https://github.com/allegro/typescript-strict-plugin/compare/master...neenjaw:typescript-strict-plugin:add-non-root-project-support
Usage in action after the proposed changes: