You can't have simple js or css files in the project so what you do instead is create html files that contain it, and preferably you place the < script>< /script> or < style> inside those files.
So you might have a file a file named myscript.js.html
with the following content:
<script>
alert ("Hello World!");
</script>
Now you put this line in the html where you want the asset to be included
Put this in the html where you want to include the asset:
<?= HtmlService.createHtmlOutputFromFile('myscript.js').getContent() ?>
Notice that the ".html" in the filename is omitted.
If you're going to include a number of assets it might be a good idea to make a helper-function. You can put the following function in your code (gs-file)
function include(filename) {
return HtmlService.createTemplateFromFile(filename).getRawContent();
}
Then the line above can be changed to:
<?!= include('myscript.js') ?>
Finally, you also need to call the evaluate()-method of the HTMLTemplate or else the code inside <?!= ?>
in the html file wont be evaluated.
So if you're serving the html file like this for instance:
var html=HtmlService.createTemplateFromFile('repeatDialog');
SpreadsheetApp.getUi().showModalDialog(html, 'foo');
You simply need to change it to:
var html=HtmlService.createTemplateFromFile('repeatDialog').evaluate();
SpreadsheetApp.getUi().showModalDialog(html, 'foo');
If you were using createHtmlOutputFromFile and not createTemplateFromFile before then you should know that evaluate() returns htmlOutput so if you're wondering where to put things like .setWidth() then it's after the evaluate() call.