I've completed all the necessary steps and included dependencies, yet I encounter an error when building the project: projects/fs-lib/node_modules/type-fest/source/typed-array.d.ts:16:4 - error TS2583: Cannot find name 'BigInt64Array'. It suggests changing the 'lib' compiler option to 'es2020' or later. Since yesterday, this error has persisted despite my efforts. I'm working on converting a completed project into an Angular library. The creation of the lib, along with copying and exporting all required components, is done. However, the error persists during the build process. I'm currently using es2021, have reinstalled dependencies, and am utilizing Angular 12.2.8 with node version 14.20.1. My typescript version is 4.3.5. Below is my global project tsconfig file:
{
"compileOnSave": false,
...
}
tsconfig of lib
{
"extends": "../../../tsconfig.json",
"include": [
"src/**/*.ts",
"src/lib/interfaces/interfaces"
]
}
My project's package.json:
{
"name": "file-system",
...
}
Package.json from the lib:
{
"name": "fs-lib",
...
}
Thank you.
I've attempted modifying the lib and installing dependencies in hopes of resolving the error, but it persists.