在React项目中,我有这个jsconfig:
{
"compilerOptions": {
"baseUrl": "./src",
"mapRoot": "./src",
"target": "ES6",
"checkJs": true,
"jsx": "react",
"allowSyntheticDefaultImports": true
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}
但是下面的代码仍会产生错误
window.addEventListener(type, callback)
说:
[js] Property' dispatchEvent'在类型' typeof window'
上不存在