gpt4 book ai didi

typescript - 项目必须列出所有文件或使用 'include' 模式

转载 作者:行者123 更新时间:2023-12-04 10:38:51 30 4
gpt4 key购买 nike

我在 VSCode 中看到了这个警告:

VSCode Warning

这是引发 ts 警告的行:

import packageJson from "../package.json";

奇怪的是,构建和 linting 项目工作正常:

$ tsc --project .
✨ Done in 1.16s.

$ tslint --config ../../tslint.json --project .
✨ Done in 1.59s.

这是由 VSCode 解析器引起的警告,还是我的 tsconfig.json 有问题?文件?
// tsconfig.json
{
"exclude": [
"node_modules"
],
"extends": "../../tsconfig.json",
"files": [
"package.json"
],
"include": [
"src/**/*"
],
"compilerOptions": {
/* Basic Options */
"outDir": "dist",
/* Module Resolution Options */
"baseUrl": ".",
}
}

最佳答案

尝试添加:

"resolveJsonModule": true,
"esModuleInterop": true

到您的编译器选项

关于typescript - 项目必须列出所有文件或使用 'include' 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60029058/

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