Currently, I am working on my Angular project using WebStorm which involves multiple tsconfig files such as tsconfig.json
, tsconfig.lib.json
, tsconfig.lib.prod.json
, and tsconfig.spec.json
.
While most of the configuration settings are only in the main tsconfig.json
file, the other files extend this configuration. However, there are instances where certain configurations are duplicated across multiple extended files. I am curious if these can be consolidated into the main file.
Is there a way to view the complete content of tsconfig.lib.json
, including its extended options?
From what I know, Visual Studio used to have a similar feature for web.config files.