
How to Compile FluidDiagrams
----------------------------

All the information you need about TypeScript can be found
here:

  http://www.typescriptlang.org/


If you want to use VisualStudio for this Project, you should have
access to Microsoft products via your student account. If not let me
know and i will create an account for you to download VisualStudio.

If you prefer, you can also use the command line compiler which is
available as a Node.js package.



1. Download and install nodejs from nodejs.org (x64) as msi installer

2. Restart  (so npm is in PATH)

3. Install typescript

   > npm install -g typescript


4. Compile some source files

  > tsc --target "ES5" -c FluidDiagrams.ts
  > tsc --target "ES5" --sourcemap FluidDiagrams.ts

  > tsc --target "ES5" -c *.ts


