@vfourny/node-toolkit 1.0.7 → 1.0.9
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/package.json +3 -4
- package/tsconfig.base.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vfourny/node-toolkit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Toolkit for Node.js projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/libs/index.js",
|
|
@@ -55,6 +55,8 @@
|
|
|
55
55
|
"@semantic-release/git": "^10.0.1",
|
|
56
56
|
"eslint-config-prettier": "^10.0.1",
|
|
57
57
|
"eslint-plugin-vue": "^9.32.0",
|
|
58
|
+
"globals": "^15.3.0",
|
|
59
|
+
"prettier": "^3.2.5",
|
|
58
60
|
"typescript-eslint": "^8.0.0"
|
|
59
61
|
},
|
|
60
62
|
"devDependencies": {
|
|
@@ -62,11 +64,8 @@
|
|
|
62
64
|
"@types/eslint__js": "^8.42.3",
|
|
63
65
|
"@types/eslint-config-prettier": "^6.11.3",
|
|
64
66
|
"@types/node": "^22.0.0",
|
|
65
|
-
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
66
67
|
"eslint": "^9.3.0",
|
|
67
|
-
"globals": "^15.3.0",
|
|
68
68
|
"husky": "^9.0.11",
|
|
69
|
-
"prettier": "^3.2.5",
|
|
70
69
|
"semantic-release": "^24.0.0",
|
|
71
70
|
"typescript": "^5.4.5"
|
|
72
71
|
},
|
package/tsconfig.base.json
CHANGED
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"inlineSourceMap": true /* Include sourcemap files inside the emitted JavaScript. */,
|
|
64
64
|
// "outFile": "./" /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */,
|
|
65
65
|
"outDir": "${configDir}/dist" /* Specify an output folder for all emitted files. */,
|
|
66
|
-
|
|
66
|
+
"removeComments": true /* Disable emitting comments. */,
|
|
67
67
|
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
68
68
|
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
69
69
|
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|