Merge objects & other types recursively. A simple & small integration.
I get this error when trying to import your project. ``` Cannot find module 'merge-anything' or its corresponding type declarations. There are types at '{project path}/node_modules/merge-anything/dist/index.d.ts', but this result could not be resolved under your current 'moduleResolution' setting. Consider updating to 'node16', 'nodenext', or 'bundler'. ``` Whatever settings this package is using, is not the same as all other typescript npm packages The only way to get this package to work is to use `const MergeAnything = require("merge-anything")` es6 style imports like `import { merge } from "merge-anything"` do not work. For reference here is my `tsconfig.json` ```json { "compilerOptions": { "module": "commonjs", "declaration": true, "noImplicitAny": false, "removeComments": true, "noLib": false, "allowSyntheticDefaultImports": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "target": "es2017", "sourceMap": true, "outDir": "./lib", "baseUrl": "./src", "types": ["node", "i18n", "jest"], "resolveJsonModule": true }, "include": [ "src/**/*" ], "exclude": [ "node_modules", "**/*.spec.ts" ], "il18n": [ "eng-US" ] } ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by woodcockjosh and has received 2 comments.