You can add : RequestInit after const option, like this:
: RequestInit
const option
const option: RequestInit = { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({}), credentials: 'include', };