Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. module.exports = {
  2. context: __dirname,
  3. mode: 'production',
  4. devtool: "none",
  5. entry: {
  6. 'gas-deployment/adins': './js/adins.ts',
  7. 'gas-deployment/Code': './googleappscript/Code.ts'
  8. },
  9. optimization: {
  10. minimize: false
  11. },
  12. module: {
  13. rules: [
  14. {
  15. test: /.ts$/,
  16. use: 'ts-loader',
  17. exclude: /node_modules/
  18. }
  19. ]
  20. },
  21. resolve: {
  22. extensions: ['.ts', '.js']
  23. },
  24. output: {
  25. filename: '[name].js',
  26. path: path.resolve(__dirname),
  27. },
  28. plugins: [
  29. new GasPlugin()
  30. ]
  31.  
  32. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement