Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. exports class MyClass {
  2. constructor (private id: number) {
  3. }
  4.  
  5. // ... etc
  6. }
  7.  
  8. tsc --module umd MyModule.ts
  9.  
  10. tsc --module commonjs MyModule.ts
  11.  
  12. tsc --module amd MyModule.ts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement