I only want to include the .ts and .js files in the .csproj. The format currently used is:
<Content Include="Scripts\FooterItems\EnableAccount.js">
<DependentUpon>EnableAccount.ts</DependentUpon>
</Content>
<TypeScript Include="Scripts\FooterItems\EnableAccount.ts" />
(I have a custom build target file that targets TypeScript elements during build).
I've installed Web Essentials, which has some features that help with TypeScript development, particularly the "Compile TS to JS on save". However, it's generating both the .js and the .js.map source map file. It also adds the .js.map file to the .csproj, which is the annoying bit. Note that this is with the "Generate Source Map" setting set to False.
Anyone else spotted this, and has run into a similar issue?