When Anders Hejlsberg is talking about external modules around 35:00 in the following video...
Anders Hejlsberg: Introducing TypeScript
... why does the file server.ts
require a triple slash reference to node.d.ts where as hello.ts
doesn't require a similar reference to server.ts
?
In particular in hello.ts
he mentions that intellisense is present plus he gets to use the exported item from server.ts
. So what more could the triple slash reference add?