node_modules/ang-jsoneditor/jsoneditor/jsoneditor.component.d.ts(13,9) 中的错误
ERROR in node_modules/ang-jsoneditor/jsoneditor/jsoneditor.component.d.ts(13,9)
所以,我正在做一个 angular 项目并且
最近我在运行宁npm start
时开始面对这个问题。如果复制旧的 node-modules
文件夹,但只有当我复制新的 npm install
时,我才不会遇到这个问题。
我最近没有看到我的 package.json 文件有任何变化。但是当我 运行 npm start
时,我得到这个错误:
ERROR in node_modules/ang-jsoneditor/jsoneditor/jsoneditor.component.d.ts(13,9): error TS1086: An accessor cannot be declared in an ambient context.
我尝试安装最新版本的 typescript
,但似乎与我使用的 angular-cli 版本不兼容。另外,我尝试安装最新版本的 jsoneditor
和 ang-jsoneditor
.
我不确定这是由于版本不匹配还是其他错误造成的。
这是我的 package.json
.
的片段
{
"name": "Project",
"version": "2.0.0",
"license": "MIT",
"dependencies": {
"@angular/animations": "^7.2.12",
"@angular/cdk": "~7.1.0",
"@angular/common": "^7.2.12",
"@angular/compiler": "^7.2.12",
"@angular/core": "^7.2.12",
"@angular-devkit/build-angular": "~0.11.0",
"@angular/cli": "^7.3.8",
"@angular/compiler-cli": "^7.2.12",
"ang-jsoneditor": "^1.9.4",
"jsoneditor": "^5.34.0",
"typescript": "^3.2.4"
}
}
感谢任何帮助。
您的 ang-jsoneditor
包版本 does not work with Angular 7 because it uses a higher version of TypeScript with a 显然是导致错误的原因。尚未在问题单上发布官方解决方案,但您可以尝试安装与 Angular 7.
兼容的旧版本 ang-jsoneditor
所以,我正在做一个 angular 项目并且
最近我在运行宁npm start
时开始面对这个问题。如果复制旧的 node-modules
文件夹,但只有当我复制新的 npm install
时,我才不会遇到这个问题。
我最近没有看到我的 package.json 文件有任何变化。但是当我 运行 npm start
时,我得到这个错误:
ERROR in node_modules/ang-jsoneditor/jsoneditor/jsoneditor.component.d.ts(13,9): error TS1086: An accessor cannot be declared in an ambient context.
我尝试安装最新版本的 typescript
,但似乎与我使用的 angular-cli 版本不兼容。另外,我尝试安装最新版本的 jsoneditor
和 ang-jsoneditor
.
我不确定这是由于版本不匹配还是其他错误造成的。
这是我的 package.json
.
{
"name": "Project",
"version": "2.0.0",
"license": "MIT",
"dependencies": {
"@angular/animations": "^7.2.12",
"@angular/cdk": "~7.1.0",
"@angular/common": "^7.2.12",
"@angular/compiler": "^7.2.12",
"@angular/core": "^7.2.12",
"@angular-devkit/build-angular": "~0.11.0",
"@angular/cli": "^7.3.8",
"@angular/compiler-cli": "^7.2.12",
"ang-jsoneditor": "^1.9.4",
"jsoneditor": "^5.34.0",
"typescript": "^3.2.4"
}
}
感谢任何帮助。
您的 ang-jsoneditor
包版本 does not work with Angular 7 because it uses a higher version of TypeScript with a
ang-jsoneditor