Create new TypeScript\Node.js\Blank Node.js Console App
Add New Item->TypeScript file: TypeScript1.ts
Enter some code in the new file: `console.log('hello');`
Build
Result: TypeScript1.ts doesn't get compiled into TypeScript1.js. That's because the entry in msbuild is incorrect. It gets added as `<Content>` instead of `<TypeScriptCompile>`.
Add New Item->TypeScript file: TypeScript1.ts
Enter some code in the new file: `console.log('hello');`
Build
Result: TypeScript1.ts doesn't get compiled into TypeScript1.js. That's because the entry in msbuild is incorrect. It gets added as `<Content>` instead of `<TypeScriptCompile>`.