TypeScript 2.x, @types 및 시스템에서의 Angular 1.xJS - 글로벌 타이핑 사용 새로운 TS2 및 @types 레지스트리에서 Angular 1.x를 사용하려고 하는데 문제가 발생하였습니다.@types는 타이핑 레지스트리가 "글로벌" 타이핑이라고 부르는 것을 사용하지 않는 것 같습니다.다음 오류가 발생했습니다. error TS2686: 'angular' refers to a UMD global, but the current file is a module. Consider adding an import instead. 각도 코드는 다음과 같습니다. import "angular"; import "angular-route"; const app = angular.module("charte..