Reputation: 43
Im having an error running build pipeline in Azure. here is the error:
The build fails after this and I cant seem to figure this one out. Thank you in advance.
Upvotes: 0
Views: 81
Reputation: 222722
There are two ways you could solve,
Setting "skipLibCheck": true in tsconfig.json
"compilerOptions": {
"skipLibCheck": true
}
Upvotes: 1