Skip to content

Instantly share code, notes, and snippets.

@qwertie
Created June 30, 2018 06:07
Show Gist options
  • Select an option

  • Save qwertie/3557c6ff56ef7e0859794f417f9e4eee to your computer and use it in GitHub Desktop.

Select an option

Save qwertie/3557c6ff56ef7e0859794f417f9e4eee to your computer and use it in GitHub Desktop.
scripts section for webpack
"scripts": {
"test": "echo \"Error: no tests installed\" && exit 1",
"build": "webpack app/app.tsx --module-bind tsx=awesome-typescript-loader -o app/app.bundle.js --mode=production",
"build:dev": "webpack app/app.tsx --module-bind tsx=awesome-typescript-loader -o app/app.bundle.js --mode=development",
"watch": "webpack app/app.tsx --module-bind tsx=awesome-typescript-loader -o app/app.bundle.js --mode=development --watch",
"start": "node server.js"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment