Closed q-benwillis closed 3 months ago
This is by-design. Developers should always set skipLibCheck/skipDefaultLibCheck to true for d.ts in node_modules.
Okay, I guess the logical question is when using OpenPageConfig
is workloadName
actually optional or is it required?
It's marked as deprecated and you should not pass it. See https://learn.microsoft.com/en-us/javascript/api/@ms-fabric/workload-client/openpageconfig?view=fabric-extensibility-js-latest.
I'm seeing the following error when building our custom Fabric Workload frontend:
Seems that there's a type issue in the
@ms-fabric/workload-client
npm package.I'm working around this by disabling library type checking with
"skipLibCheck": true
in my tsconfig.json.