Upgrading pnpm led to compilation errors

Fist:
 * The inferred type of 'PaymentStatus' cannot be named without a reference to '.pnpm/@types+react@17.0.38....
 * The inferred type of 'HistoryRow' cannot be named without a reference to '.pnpm/@types+react@17.0.38/node_modules/@types/react'. This is likely not portable. A type annotation is necessary.
and more like that...
Second:
 some problems trying to check type inside libs
more related: https://github.com/microsoft/TypeScript/issues/42873
This commit is contained in:
Sebastian 2022-05-24 00:18:30 -03:00
parent ed466030d1
commit 3525b21008
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1

View File

@ -11,6 +11,8 @@
"moduleResolution": "Node", "moduleResolution": "Node",
"module": "ESNext", "module": "ESNext",
"target": "ES6", "target": "ES6",
"skipLibCheck": true,
"preserveSymlinks": true,
"noImplicitAny": true, "noImplicitAny": true,
"outDir": "lib", "outDir": "lib",
"noEmitOnError": true, "noEmitOnError": true,