Encountered an issue while compiling my Angular project. This is a project that has remained unchanged for some time and is built daily by Jenkins. However, today it started failing and I'm struggling to determine the cause.
ERROR in [at-loader] ./node_modules/@types/estree/index.d.ts:107:38 TS2304: Cannot find name 'Omit'.
The dependencies listed in my package.json are as follows:
"dependencies": {
"@angular/animations": "^7.2.6",
"@angular/cdk": "^7.3.3",
"@angular/compiler": "^7.2.6",
"@angular/compiler-cli": "7.2.6",
"@angular/core": "^7.2.6",
...
tslint.json
{
"rules": {
"class-name": true,
"comment-format": [
false,
"check-space"
],
"curly": true,
"eofline": false,
"forin": true,
...
Any suggestions or insights on how to resolve this issue would be greatly appreciated.
Thank you