Open Chersquwn opened 5 years ago
@Chersquwn this is a duplicate of #31
Possible temporary fix for Yarn users is to define resolutions in package.json
:
{
"resolutions": {
"remark": "11.0.2"
}
}
Could you provide a new release with the updated remark dependency? Thank you!
@gucong3000 Please publish the new version. postcss-markdown
is currently the point of failure for a lot typescript builds.
I added the following workaround to my custom-types.d.ts
(project root file):
declare module 'vfile-message' {
export type VFileMessage = any;
}
Sadly, we don't have a new release. 😞
As a fix to vfile-message
error, in my case, I just added "moduleResolution": "node"
to tsconfig.json
.
As a fix to
vfile-message
error, in my case, I just added"moduleResolution": "node"
totsconfig.json
.
@rafaelfbs new to typescript here, care to share example of what you added? we already have in tsconfig "moduleResolution": "node",
any chance we'll get this fixed? it's almost been a year
Because of
@types/vfile
and@types/vfile-message
deprecate, the old version of remark depends on@types/vfile-message
will report an error, when using ts.