Google Apps Script CoffeeScript

What are some ways to crack CoffeeScript in a Google Apps Script editor (rather than an external editor)? I understand that I will not get autocomplete, but I would like to use CoffeeScript inside the google editor.

+4
source share
2 answers

You cannot, because it is a JavaScript runtime, not a CoffeeScript runtime. Google would have to add support for this themselves.

Can you write locally in CoffeeScript and put the output code in the Google Apps Script editor?

+2
source

Although I didn’t look at it, it looks like it might be useful: CoffeeScript template for Google Apps Script development

+1
source

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


All Articles