-
-
Save eyecatchup/5fae49a65518fc161a29e53f7673a8bc to your computer and use it in GitHub Desktop.
Revisions
-
surma created this gist
Apr 18, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ { "name": "tsquickstart", "version": "1.0.0", "description": "Boilerplate for quick one-off TypeScript projects. Just run `npm start`", "scripts": { "init": "test -f tsconfig.json || (tsc --init -t ESNext -m ESNext && npm install)", "start": "npm run init && concurrently \"npm run watch\" \"npm run serve\"", "serve": "http-server", "watch": "tsc -p . --watch", "build": "tsc -p ." }, "author": "Surma <[email protected]>", "license": "Apache-2.0", "devDependencies": { "concurrently": "^3.5.1", "http-server": "^0.11.1", "typescript": "^2.8.1" } }