tsconfig
"outFile": "./dist/bundle.js"
outFile 은 ts가 namespace 와 연결되도록 한다.
"module": "AMD",
module AMD로 수정한다.
namespace App {
}
클래스 이넘 인터페이스를 네임스페이스로 감싸고 export한다.
import는 아래와 같이 한다.
/// <reference path="drag-drop-interfaces.ts" />
/// <reference path="project-model.ts" />
하지만 es6 모듈 사용법을 권장한다.