Closed
Description
[moved from https://github.com/Microsoft/msbuild/issues/1354]
Just downloaded VS2017 and migrated my project.json-based project. This was created using the Angular 2 template that can be found in https://github.com/aspnet/JavaScriptServices.
Now my TypeScript files are not shown and there are many .js and .map.js files created automatically.
What would be the correct configuration to have what I had before this?
After posting the original question I found these settings are enough for my scenario, but the migration experience still wasn't complete and that's a bug in my opinion:
<PropertyGroup>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
</PropertyGroup>
<ItemGroup>
<None Include="ClientApp\**\*.scss" />
<None Include="ClientApp\**\*.ts" />
</ItemGroup>
Thanks!