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
When updating with npm audit fix --force it updated jest which resulted in a bunce of new errors. tsc was checking files inside node_modules so I found a potential solution was to use skipLibChecks: true in the tsconfig.json. However this fix needed typescript to be upgraded to >=3.7.3. When upgrading typescript to anything over 3.7.2 it breaks the following code, specifically line 100: statePath
I am trying to update deps to fix audit issues.
When updating with
npm audit fix --force
it updated jest which resulted in a bunce of new errors.tsc
was checking files insidenode_modules
so I found a potential solution was to useskipLibChecks: true
in thetsconfig.json
. However this fix needed typescript to be upgraded to >=3.7.3. When upgrading typescript to anything over 3.7.2 it breaks the following code, specifically line 100: statePathseorsum/src/index.ts
Lines 93 to 103 in 6c8ce7c
The text was updated successfully, but these errors were encountered: