Тип Script compiler показывает ошибку при компиляции в Visual Studio 2017 - PullRequest
0 голосов
/ 05 июля 2019

Я получаю ошибку сборки при сборке приложения Angular 6 и Asp.Net MVC.Я также обновил Type Script typescript@3.2.4, но не решил мою проблему.

     Build:A 'const' initializer in an ambient context must be a string or numeric literal.
Error   TS1039  (TS) Initializers are not allowed in ambient contexts.  D:\newAngularApp\NewApp\NewApp\Client (tsconfig or jsconfig project)    D:\newAngularApp\NewApp\NewApp\Client\node_modules\@angular\common\http\src\response.d.ts   253 Active
Error   TS1039  (TS) Initializers are not allowed in ambient contexts.  D:\newAngularApp\NewApp\NewApp\Client (tsconfig or jsconfig project)    D:\newAngularApp\NewApp\NewApp\Client\node_modules\@angular\common\http\src\response.d.ts   259 Active

tsconfig.json

{
  "compileOnSave": false,
  "compilerOptions": {
    "baseUrl": "./",
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "module": "es2015",
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "importHelpers": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2018",
      "dom"
    ]
  }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...