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
ERROR ⨯ Debug Failure. False expression: Node must have a real position for this operation
在目录src/tsrpc/types/文件下定义的接口文件(tsrpc协议中会用到), 如果使用export default interface导出这个接口, build和dev命令都是可以正常运行的,但是doc命令会报这个错误.
src/tsrpc/types/
export default interface
去掉default,使用export interface导出接口,这个问题可以解决.
export interface
The text was updated successfully, but these errors were encountered:
No branches or pull requests
错误信息
ERROR ⨯ Debug Failure. False expression: Node must have a real position for this operation
问题原因
在目录
src/tsrpc/types/
文件下定义的接口文件(tsrpc协议中会用到), 如果使用export default interface
导出这个接口, build和dev命令都是可以正常运行的,但是doc命令会报这个错误.解决办法
去掉default,使用
export interface
导出接口,这个问题可以解决.The text was updated successfully, but these errors were encountered: