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
I just tried migrating from the old json2csv package to the new one, and now I'm getting type errors from within node_modules:
../../common/temp/node_modules/.pnpm/@streamparser+json@0.0.12/node_modules/@streamparser/json/src/tokenizer.ts:374:11 - error TS7029: Fallthrough case in switch.
374 case TokenizerStates.STRING_UNICODE_DIGIT_4:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../common/temp/node_modules/.pnpm/@streamparser+json@0.0.12/node_modules/@streamparser/json/src/tokenizer.ts:500:11 - error TS7029: Fallthrough case in switch.
500 case TokenizerStates.NUMBER_AFTER_E:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../common/temp/node_modules/.pnpm/@streamparser+json@0.0.12/node_modules/@streamparser/json/src/tokenizer.ts:697:18 - error TS6133: 'parsedToken' is declared but its value is never read.
697 public onToken(parsedToken: ParsedTokenInfo): void {
~~~~~~~~~~~
../../common/temp/node_modules/.pnpm/@streamparser+json@0.0.12/node_modules/@streamparser/json/src/tokenparser.ts:324:18 - error TS6133: 'parsedElementInfo' is declared but its value is never read.
324 public onValue(parsedElementInfo: ParsedElementInfo): void {
~~~~~~~~~~~~~~~~~
Found 4 errors in 2 files.
Errors Files
3 ../../common/temp/node_modules/.pnpm/@streamparser+json@0.0.12/node_modules/@streamparser/json/src/tokenizer.ts:374
1 ../../common/temp/node_modules/.pnpm/@streamparser+json@0.0.12/node_modules/@streamparser/json/src/tokenparser.ts:324
The text was updated successfully, but these errors were encountered:
I just tried migrating from the old
json2csv
package to the new one, and now I'm getting type errors from within node_modules:The text was updated successfully, but these errors were encountered: