https://github.com/ryanmcdermott/typescript-makefile
Quick and easy starting off point for a TypeScript project
https://github.com/ryanmcdermott/typescript-makefile
Last synced: about 1 year ago
JSON representation
Quick and easy starting off point for a TypeScript project
- Host: GitHub
- URL: https://github.com/ryanmcdermott/typescript-makefile
- Owner: ryanmcdermott
- License: mit
- Created: 2016-11-06T18:51:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-18T05:08:56.000Z (over 3 years ago)
- Last Synced: 2024-10-21T21:08:44.214Z (over 1 year ago)
- Language: TypeScript
- Size: 3.91 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# typescript-makefile
Want to easily install TypeScript into a local `node_modules` directory? Don't want to deal with Gulp, Grunt, Webpack, or whatever cool new tool is out there? Well then, use this project as your starting point for a quick and easy time using TypeScript!
## Usage
```
make install
make build
node ./build/example.js
```
That's all there is to it! For an extra awesome workflow, type `make watch` and edit `example.ts` and anytime you save the file, it will be auto-rebuilt.
### PS
If you want to use this in a real project and don't like `example.js` as build filename, then edit the `tsconfig.json` to change the `outFile` value.