We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
项目tsconfig.json配置如下
{ "extends": "@tsconfig/tsconfig.node.json", "compilerOptions": { "module": "CommonJS", "declaration": true, }, }
extends里的配置包含了"skipLibCheck": true,因为extends里的内容没有被加载,从而导致config.default.ts的声明没有被输出到typings/config中。
"skipLibCheck": true
The text was updated successfully, but these errors were encountered:
我提了两个PR,处理1.x和2.x版本 #110 #111
Sorry, something went wrong.
fix: load the tsconfig extends with the specific extension name(eggjs…
4e0ce5a
…#112)
Successfully merging a pull request may close this issue.
项目tsconfig.json配置如下
extends里的配置包含了
"skipLibCheck": true
,因为extends里的内容没有被加载,从而导致config.default.ts的声明没有被输出到typings/config中。The text was updated successfully, but these errors were encountered: