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?