gpt4 book ai didi

reactjs - create-react-app typescript global.d.ts文件不起作用

转载 作者:行者123 更新时间:2023-12-03 21:56:19 25 4
gpt4 key购买 nike

我的global.d.ts文件夹中有这样的src文件

declare global {
interface Window {
config: {
url: string;
};
}
}

然后在我组件的某个地方做
window.config = 'x';

并且 ts显示此错误
Error:(10, 22) TS2339: Property 'config' does not exist on type 'Window'.

create-react-app用于此应用程序。
"react-scripts": "3.0.1",
"typescript": "3.5.3"

这是 tsconfig.json的样子
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve"
},
"include": [
"src"
]
}

最佳答案

如果您的.d.ts文件不导入或导出任何内容,则可以省略declare global块。

您需要确保此文件位于@types目录中,或者已将typeRoots配置为包括类型声明的目录,例如

{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types/",
"./custom/path/to/declarations/"
]
}
}

有关此的更多信息,请参见 here

关于reactjs - create-react-app typescript global.d.ts文件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57125019/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com