如何让TS使用我创建的dts文件?

时间:2019-10-28 12:44:48

标签: typescript window declaration

到目前为止,我已经创建了一个包含该文件的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不存在。

有什么想法我错过了吗?

0 个答案:

没有答案