Перевожу существующий проект с angular 1 на angular 4.
Старая версия собиралась для дев-режима через requireJs.
Новую планирую через SystemJs - по аналогии.
Столкнулся с проблемой, что typescript файлах студия не может корректно зарезолвить импорты.
Для строки
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
Выдает сообщение "
Cannot find module '@angular/platform-browser-dynamic'"
В System.config я добавил соответствующие пути:
System.config({
paths: {
'npm:': '../node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
'app': 'app',
// angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
Но как указать для VS правильные пути ?