I created a package for my project and successfully installed it in my repository. However, I am facing an issue where I cannot import the functions from that package.
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./src",
"paths": {
"@/*": [
"./*"
],
"@qlub-dev/js-backend-common": ["./node_modules/@qlub-dev/js-backend-common"]