This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| declare let global: any |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const GasPlugin = require("gas-webpack-plugin"); | |
| [...] | |
| module.exports = { | |
| plugins: [ | |
| new GasPlugin(), | |
| ], | |
| [...] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| global.handleEntryPoint = () => { | |
| const card = CardService.newCardBuilder() | |
| .setHeader( | |
| CardService.newCardHeader() | |
| .setTitle("Hello world!") | |
| ) | |
| .addSection( | |
| CardService.newCardSection().addWidget( | |
| CardService.newTextParagraph() | |
| .setText("Some very useful information"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { join, resolve } = require("path"); | |
| const root = resolve(__dirname, "../../"); | |
| module.exports = { | |
| mode: "development", | |
| context: join(root, "src"), | |
| entry: { | |
| app: join(root, "src/main.ts"), | |
| }, | |
| devtool: "none", | |
| output: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "scriptId":"1AUNIOea…" | |
| } |
NewerOlder