Hey everyone! In an upcoming lecture, we'll be installing the AngularFire package to help us integrate Firebase into an Angular project. A few errors will pop up related to installing this package. To get rid of these errors, you must update the tsconfig.json file.


{ "compilerOptions": { "skipLibCheck": true, } }


The skipLibCheck setting stops TypeScript from type-checking files in the node_modules directory. However, type-checking will remain enabled for code in the src directory, so you still benefit from type-checking. Be sure to add this option to your configuration before proceeding.