Mark's TypeScript template. A minimal skeleton project to get a TypeScript project going. Tries to include as little as possible while still maintaining a reasonably good dev experience.
- Get a copy of the template:
git clone https://github.com/overthink/tstemplate myproject
cd myproject
rm -rf .git
git init
- change the
CHANGEME
values inpackage.json
to suit your project npm install
npm start
- look at http://localhost:8000
- run
npm test
to test, ornpm run watch
to run tests on any file change
- TypeScript 2.x
- webpack 2.x
- webpack-dev-server
- tape for testing
- static asset handling (copies into dist directory)