fix: allow jsDoc comments for custom functions (#66)

Allows jsDoc comments for custom sheets functions to remain in builds so that autocomplete works correctly
This commit is contained in:
Elisha Nuchi
2020-10-28 15:10:55 -04:00
committed by GitHub
parent dc3613395c
commit e73e51e56e
+3
View File
@@ -305,6 +305,9 @@ const serverConfig = {
module: false, module: false,
output: { output: {
beautify: true, beautify: true,
// support custom function autocompletion
// https://developers.google.com/apps-script/guides/sheets/functions
comments: /@customfunction/,
}, },
}, },
}), }),