My project was functional until I decided to install ExcelJs (npm install --save exceljs
) and things took a turn for the worse.
I started encountering errors such as
Cannot read property ‘Minus’ of undefined
and Cannot find module 'postcss-value-something'
. Resolving these errors by installing missing parts using npm i
, led me to yet another error - TypeError: Object prototype may only be an Object or null: undefined
.
In an attempt to restore order, I removed ExcelJs from my project but unfortunately, the issues persisted.
The detailed error message is as follows:
at setPrototypeOf (<anonymous>)
at Object.__extends (F:\Honeycomb\Honey\Varroa\node_modules\@angular\compiler-cli\node_modules\tslib\tslib.js:68:9)
...
The contents of my package.json reveal various dependencies that might be causing conflicts within the project.
"dependencies": {
// List of dependencies
},
"devDependencies": {
// List of devDependencies
}
All signs point towards the cli/compiler cli version or even typescript being the culprits. However, finding specific information on the compatibility between versions has been challenging.
If you have any insights or guidance on resolving these issues, it would be greatly appreciated.