Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eliacontini/ts-experiments
Experiments with TypeScript
https://github.com/eliacontini/ts-experiments
Last synced: 27 days ago
JSON representation
Experiments with TypeScript
- Host: GitHub
- URL: https://github.com/eliacontini/ts-experiments
- Owner: EliaContini
- License: gpl-3.0
- Created: 2015-12-06T15:04:02.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-08T16:55:11.000Z (about 9 years ago)
- Last Synced: 2023-08-19T04:37:58.001Z (over 1 year ago)
- Language: TypeScript
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TypeScript Experiments
==============## Summary
Tested on Ubuntu 12.04 LTS, with Node.js 0.10.25, npm 1.3.10 and TypeScript 1.6.2
## Installation on Ubuntu 12.04 LTS
### Install Node.js and npm
sudo apt-get install nodejs npm
cd /usr/bin
sudo ln -s nodejs node
### Install TypeScriptsudo npm install -g typescript
## NotesTo compile
tsc HelloWorld.js
To compile and generate Source Mapstsc --sourceMap HelloHorld.js
To generate AMD module
tsc --module "amd" HelloHorld.js