I've got my global.d.ts
file in src
folder like this
declare global {
interface Window {
config: {
url: string;
};
}
}
Then somewhere in my components do
window.config = 'x';
And ts
shows this error
Error:(10, 22) TS2339: Property 'config' does not exist on type 'Window'.
create-react-app is used for this app.
"react-scripts": "3.0.1",
"typescript": "3.5.3"
This is how tsconfig.json
looks like
{
"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"
]
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…