You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, create-cycle-app turns off strictFunctionTypes checks in .tsconfig in the cycle-scripts-one-fits-all flavor.
"strict": true,
"strictFunctionTypes": false,
I want to know if it is safe to remove the line "strictFunctionTypes": false, from .tsconfig
(strict implies strictFunctionTypes)?
Will this break cycle.js or xstream?
create-cycle-app version: 5.0.0
The text was updated successfully, but these errors were encountered:
Sorry that I answer this now, kinda missed the notification. It should be save to remove that line, as I recently updated Cycle.js to support the complete strict mode. But please let me know if it really worked!
Currently, create-cycle-app turns off
strictFunctionTypes
checks in.tsconfig
in thecycle-scripts-one-fits-all
flavor.I want to know if it is safe to remove the line
"strictFunctionTypes": false,
from.tsconfig
(
strict
impliesstrictFunctionTypes
)?Will this break cycle.js or xstream?
create-cycle-app version: 5.0.0
The text was updated successfully, but these errors were encountered: