Patrick Zhong
Patrick Zhong
The content from handbook is not that "correct". It will check `/root/src/node_modules/@types/moduleB.d.ts`. AND it will also check `/root/src/node_modules/@types/moduleB/` directory if it contains a `package.json` file.
Thanks for working on this issue @lmiller1990, @chrisbreiding . I can provide some clues for your reference. I think the following changes introduced the breaking change. https://github.com/cypress-io/cypress/blob/1fcdc878b601d1eee870e30ee012993443d61742/packages/driver/src/util/privileged_channel.ts#L4-L15 It seems the...
I'm sure the format is correct and has a `content` field as described in issue description.
@luckyriko ```ts interface NumberOrStringDict { [index: string]: number | string; length: number; // ok, length is a number name: string; // ok, name is a string } ``` 这个是一种正确的用法。 如果把...
@zhangzy56 第一个链接是官网,好像没有全职做翻译的,所以翻译进度慢。第二个链接是我这个仓库生成的网站,我维护的,主要翻译的是第一版的 Handbook。 如果读英文不费力的话,推荐直接去读官网的文档,也就是第一个链接。如果想看中文的,可以读第二个链接里的文档,绝大多数的内容都没过时。
The same issue. Have to set `"skipLibCheck": true,` in tsconfig.json.