I'm trying to make a SPA with .Net Core and Angular.
So I followed this tutorial: Microsoft
It runs perfectly. Even if I open the solution in VS4Mac.
The problem is that I can't edit the typescript files. I've searched everywhere!
I have the latest version of everything involved. NodeJS, VS4Mac, etc...
Update after the comments bellow:
I have no idea of what is the reason why VS for Mac can't edit ts. And I'd like to use a native IDE, instead of a VM. Could it be that VS for Mac CAN'T edit typscript altogether? I haven't been able to prove otherwise. Has anybody else been able to edit TS with this IDE?
I am able to create and edit TypeScript (TS) files in Visual Studio for Mac (Version 7.1, screenshot below). Now, as far as I can tell, the IDE does not support TS compilation out of the box, so you'll have to compile yourself via tsc (TypeScript Compiler) or another transpiler (ex. Babel) with TS plugin.
That being said, a better editing experience for TypeScript on Mac is WebStorm, an IDE from JetBrains, which supports TypeScript out-of-the-box.