Unable to see TypeScript runner options while configuring runner in Visual Studio Code -
when try configure default build task using global tasks menu of visual studio code, dont see options related typescript, see 4 options:- msbuild maven .netcore others here image of vscode ide:-
vscode ide build runner options
i have installed typescript on machine using npm install -g typescript
please point out issue can be.
choose others
.
this example of tsc
task runner:
{ // see https://go.microsoft.com/fwlink/?linkid=733558 // documentation tasks.json format "version": "2.0.0", "tasks": [ { "taskname": "tsc", "command": "tsc --watch", "type": "shell", "problemmatcher": [ "$tsc-watch" ] } ] }
after have saved, can start with:
ctrl+shift+p -> tasks: run task -> tsc
now each time change , save *.ts
-file, run , retranspile.
Comments
Post a Comment