gpt4 book ai didi

angular - 找不到类型

转载 作者:行者123 更新时间:2023-12-02 17:19:03 24 4
gpt4 key购买 nike

我刚刚更新了 angular-cli (v1.1) 并使用 ng new MyProj 创建了一个新项目。然后我向 project.json 文件添加并安装了两个依赖项:

"dependencies": {
...
"toastr": "2.1.2",
"spin": "0.0.1"
},
"devDependencies": {
...
"@types/toastr": "2.1.32",
"@types/spin": "2.3.30",
...
"typescript": "~2.3.3"
}

然后我更新了自动生成的 app.component.ts 添加了这个构造函数:

constructor() {
toastr.success('Hi')
}

IDE (visual studio code) 没有返回任何错误,但是当我使用 ng serve 服务应用程序时,我收到以下错误:

../A/src/app/app.component.ts (15,5) 中的错误:C注释找不到名称“toastr”。

我真的想不通这有什么问题。

非常感谢

最佳答案

我解决了从 tsconfig.app.json 中删除 types 的问题。这是新配置:

{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"module": "es2015",
"baseUrl": ""
},
"exclude": [
"test.ts",
"**/*.spec.ts"
]
}

关于angular - 找不到类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44421367/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com