-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue
Milestone
Description
TypeScript Version: 2.3.1
Building Solution from Visual Studio is successful. But my TFS Build Agent fails with the following message:
In project.csproj
, I'm telling MSBuild to use <TypeScriptToolsVersion>2.3</TypeScriptToolsVersion>
(which is the default that was put in there)
tsconfig.json
:
{
"compileOnSave": true,
"compilerOptions": {
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"pretty": true,
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"target": "ES5"
},
"files": [
"./Scripts/site.ts"
],
"typeRoots": [ "./Scripts/typings" ]
}
And my NuGet packages Microsoft.TypeScript.MSBuild and Microsoft.TypeScript.Compiler are both v2.3.1
Expected behavior:
- Build Agent yields successful build that reflects local build
Actual behavior:
- Error related to
Microsoft.TypeScript.targets
file, see above
jaeeunl, jmartasek, ChrisMBarr and JayRathan
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue