Visual Studio Code and Node.js Using Coffee Script

I have an old node.js project that I wanted to use to test VSCode. I usually launch it by running "coffee app.coffee" from the command line. I configured my launch.json file, but instead, VSCode launches "node app.coffee". How can I say to use coffee instead of node?

Greetings

Nick

+6
source share
1 answer

The only configuration types currently supported are node and mono. I understand that typescript support has been included in one of the previews and will return when stable. I do not know about the potential CoffeeScript timeline, but I hope that it will be displayed, I really do.

0
source

Source: https://habr.com/ru/post/986807/


All Articles