gpt4 book ai didi

json - VS CODE错误S5057在指定目录: '.' 找不到tsconfig.json文件

转载 作者:行者123 更新时间:2023-12-04 01:44:01 24 4
gpt4 key购买 nike

我的 angular 2 入门项目适合使用 Visual Studio 代码。

我已经设置了我的 tsconfig.json 像这样...

    {
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
]
}

我立即遇到了这个错误
  [ts] Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.
class AppComponent

我无法确定发生了什么,所以我运行了一个构建并收到了这个错误。
error TS5057: Cannot find a tsconfig.json file at the specified directory: '.'

这个错误解释了为什么我收到关于组件装饰器的错误,但我不确定为什么 tsconfig.json 找不到文件。

我只有一个文件夹,它包含除 index.html、package.json 和 .gitignore 之外的所有内容。

最佳答案

我得到了类似的错误。通过更改tasks.json中的以下行解决
"args": ["-p", "."],

"args": ["-p", "./src"],
在我的情况下, tsconfig.json 在 src 文件夹中。 Angular 2 项目是使用 angular-cli 创建的。

关于json - VS CODE错误S5057在指定目录: '.' 找不到tsconfig.json文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36832205/

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