Created
June 30, 2018 06:07
-
-
Save qwertie/3557c6ff56ef7e0859794f417f9e4eee to your computer and use it in GitHub Desktop.
scripts section for webpack
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
| "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