Skip to content

Instantly share code, notes, and snippets.

@Falieson
Last active May 31, 2018 22:20
Show Gist options
  • Save Falieson/07a4f96eb35e92f47ede2ef4ec9f9e1d to your computer and use it in GitHub Desktop.
Save Falieson/07a4f96eb35e92f47ede2ef4ec9f9e1d to your computer and use it in GitHub Desktop.
S5. F04. package scripts(ARTICLE: TS-Module w/ Declarations (Part 1/4))
/** TS-Module w/ Declarations (Part 1/4)
* http://TGRstack.com/#ts-module_articles_part-1
* package-scripts (Section 5. Figure 04.)
* complete file: https://github.com/Falieson/2018-typescript-module/blob/master/package.json
**/
{
... // some stuff
"scripts": {
"build": "rimraf dist/ && tsc",
"start:build": "node dist/index.js",
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
... // the rest of the stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment