this typescript wiki says of typescript 1.8, there 'improved support tsconfig.json in visual studio 2015' (emphasis added me):
typescript 1.8 allows tsconfig.json files in project types. includes asp.net v4 projects, console application, , html application typescript project types. further, no longer limited single tsconfig.json file can add multiple, , each built part of project. allows separate configuration different parts of application without having use multiple different projects.
i have asp.net project compiler settings given tsconfig.json. outside of vs2015, configuration taken account when compiling. know because if change value of 'noimplicitany' true, build fails, using 'any' elsewhere in project. in visual studio, making change isn't noticed @ build, , build succeeds.
what can stop visual studio 2015 using tsconfig, , can make sure vs2015 use configuration?
i may give additional direction. had problems ts myself, , in 1 of stackoverflow answers mentioned .xproj file has higher priority tsconfig. experience there options cannot defined in .xproj , therefore taken tsconfig.
Comments
Post a Comment