JayP
JayP

Reputation: 43

Error on npm build in Azure build pipeline with Angular project

Im having an error running build pipeline in Azure. here is the error:

Error The build fails after this and I cant seem to figure this one out. Thank you in advance.

Upvotes: 0

Views: 81

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222722

There are two ways you could solve,

Setting "skipLibCheck": true in tsconfig.json

"compilerOptions": {
    "skipLibCheck": true
}

Upvotes: 1

Related Questions