Update package version to 1.0.10 in package.json and change TypeScript module resolution from 'bundler' to 'node' in tsconfig.d.json for improved compatibility.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@techniker-me/hash-map",
|
"name": "@techniker-me/hash-map",
|
||||||
"version": "1.0.9",
|
"version": "1.0.10",
|
||||||
"description": "A robust HashMap implementation following OOP SOLID principles",
|
"description": "A robust HashMap implementation following OOP SOLID principles",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./node/index.js",
|
"main": "./node/index.js",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"target": "es6",
|
"target": "es6",
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
|
|
||||||
"moduleResolution": "bundler",
|
"moduleResolution": "node",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"allowImportingTsExtensions": false,
|
"allowImportingTsExtensions": false,
|
||||||
"allowArbitraryExtensions": false,
|
"allowArbitraryExtensions": false,
|
||||||
|
|||||||
Reference in New Issue
Block a user