TypeScriptでexpressを使ってHello worldしてみた。けっこうはまったのでメモメモ。使ってるTypeScriptのバージョンは1.0.1。 準備 npm install -g typescript npm install --save express 試しにコンパイル こんな感じのコードを書いてコンパイルしてみる。 $ tsc --module commonjs hello.ts コンパイルエラーが...(;´Д`) ./typescript-sample/server/hello.ts(1,1): error TS2071: Unable to resolve external module ''express''. ./typescript-sample/server/hello.ts(1,1): error TS2072: Module cannot be al