Я запускаю приложение ASP.NET Core
с Angular
в visual studio 2017. К сожалению, всякий раз, когда я запускаю проект, в браузере показывается следующее сообщение:
Cannot GET /
Так мало часов гуглит( Пример ссылки ), я попробовал следующее, добавив в файл tsconfig.json:
"lib": [ "es5", "es6", "es2017", "dom" ]
В моем случае это было раньше, как показано ниже:
"lib": [ "es2017" ]
Несмотря на то, что проект был успешно построен, в нем было несколько ошибок:
Severity Code Description Project File Line Suppression State
Error TS2583 (TS) Cannot find name 'Set'. Do you need to change your target library? Try changing the `lib` compiler option to es2015 or later. ASP.NETCoreWithAngular C:\Users\Amit's-PC\source\repos\ASP.NETCoreWithAngular\ASP.NETCoreWithAngular\ClientApp\node_modules\@angular\common\src\directives\ng_class.d.ts 48 Active
Severity Code Description Project File Line Suppression State
Error TS2583 (TS) Cannot find name 'Map'. Do you need to change your target library? Try changing the `lib` compiler option to es2015 or later. ASP.NETCoreWithAngular C:\Users\Amit's-PC\source\repos\ASP.NETCoreWithAngular\ASP.NETCoreWithAngular\ClientApp\node_modules\@angular\core\src\change_detection\differs\default_keyvalue_differ.d.ts 24 Active
Severity Code Description Project File Line Suppression State
Error TS2585 (TS) 'Promise' only refers to a type, but is being used as a value here. Do you need to change your target library? Try changing the `lib` compiler option to es2015 or later. ASP.NETCoreWithAngular C:\Users\Amit's-PC\source\repos\ASP.NETCoreWithAngular\ASP.NETCoreWithAngular\ClientApp\node_modules\rxjs\Observable.d.ts 58 Active
Что-то, что я здесь пропустил?Любая идея будет высоко оценена.