TypeScript tsconfig.json being ignored in C# project
TL;DR - Make sure your tsconfig.json file has the Build Action set to Content
I have some TypeScript files included in a .NET project. I added the Microsoft.TypeScript.MSBuild NuGet package to the project to enable the TypeScript compiler to transpile the .ts files to JavaScript. All was good until I wanted to set some compiler options using the tsconfig.json file. I created this file but every time I compiled the project it didn’t do anything different.
I almost pulling out my hair in frustration, so I decided to dig in deeper to find out why this was happening. First, I ran msbuild with detailed logging. That showed up the following line just before the CompileTypeScript target was run:
Target "PreComputeCompileTypeScriptWithTSConfig" skipped, due to false condition; ('@(ConfigFiles)' != '') was evaluated as ('' != '').
A bit more digging led me to
packages\Microsoft.TypeScript.MSBuild.2.3.1\tools\net45\Microsoft.TypeScript.targets
– This defines
that PreComputeCompileTypeScriptWithTSConfig
target which is looking for @(ConfigFiles)
,
which in turn is set in target FindConfigFiles
. That target calls the FindConfigFiles
task
that is in TypeScript.Tasks.dll.
Firing up JetBrains dotPeek to reflect on the code for FindConfigTasks shows that it uses the
ContentFiles
property to look for existing tsconfig.json files, and that property is set to
@(Content)
in the targets file.
Jumping back to my project, I notice this:
Ah haa! Let’s set that Build Action to Content and try again..
Yes! Building the project shows tsc.exe
being passed the --project
parameter pointing to the tsconfig.json file!