pzavolinsky / ts-unused-exports

ts-unused-exports finds unused exported symbols in your Typescript project
MIT License
749 stars 49 forks source link

Investigate project with multiple tsconfig files #203

Open mrseanryan opened 3 years ago

mrseanryan commented 3 years ago

Currently we support a single tsconfig.json file as entry point, and will soon support extends of a base tsconfig file (#202)

This issue is to look at what happens with a project with multiple tsconfig files.

For example if entry is ./tsconfig.json but there is also a ./src/tsconfig.json and ./src/components/tsconfig.json

Then should that 2nd or 3rd one override the first, for relevant ts files?

If true, then this could be important for bigger projects... (#102)