@nsshunt/stssocketioutils 2.0.12 → 2.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node/index.d.ts +6 -0
- package/package.json +2 -2
- package/node.d.ts +0 -1
package/node/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// Shim: This only exists becuase older legacy;
|
|
2
|
+
// "module": "commonjs", // commonjs // node16
|
|
3
|
+
// "moduleResolution": "node" // node // node16
|
|
4
|
+
// from the tsconfig.json exists. If this was nodenext or node16, then this would not be required
|
|
5
|
+
// but that introduces problems with some of the existing code base
|
|
6
|
+
export * from './../types/node';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nsshunt/stssocketioutils",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14",
|
|
4
4
|
"description": "STS Socket.IO Utils",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"types",
|
|
27
27
|
"LICENSE",
|
|
28
28
|
"README.md",
|
|
29
|
-
"node
|
|
29
|
+
"node"
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
32
|
"lint": "eslint .",
|
package/node.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./types/node";
|