After upgrading to Visual Studio 2019, I noticed a change in how it handles my tsconfig.json
file compared to the previous version. In Visual Studio 2017, when accessing project properties under TypeScript Build, there was a message indicating the detection of one or more tsconfig.json or jsconfig.json files which disabled the need for manual configuration.
This streamlined process worked well for compiling files according to my
tsconfig.json
specifications.
However, Visual Studio 2019 no longer displays that notification and requires manual setup of all settings within the project properties. It seems to disregard my tsconfig.json
altogether.
Is there a way to instruct VS 2019 to prioritize using the tsconfig.json
file instead of relying on project properties?