typescript - Angular2 setup with JSPM -
i'm try setup basic "hello-world" app test using jspm, going fine until try install reflect-metadata package(i recognized excluding packages installation string) jspm install angular2 reflect-metadata zone.js es6-shim this command gives me next error: typeerror: tomap.startswith not function jspm.config.js system.config({ baseurl: "/lessons/angular2/test/", defaultjsextensions: true, transpiler: "typescript", typescriptoptions: { "tsconfig": "tsconfig.json" }, paths: { "github:*": "jspm_packages/github/*", "npm:*": "jspm_packages/npm/*" }, packages: { "app": { "defaultextension": "ts" } } ...maps goes here }); package.json { "name": "test", "version": "1.0.0", "description": "", "main": "", "scripts...