到目前为止,我已经创建了一个包含该文件的dts文件
在project-dir / typings / Window.d.ts
declare global {
interface Window {
newThing: string;
}
}
然后在project-dir / tsconfig.json中,将dts文件所在的文件夹添加到tsconfig的“ typeRoots”
{
"compilerOptions": {
// left out other options for readability
"typeRoots": ["./node_modules/@types", "./typings"]
},
}
但是当我尝试使用这个新属性时,TS却说window.newThing不存在。
有什么想法我错过了吗?