Compare commits

...

2 Commits

Author SHA1 Message Date
f61065a9a9 v2.5.3 2026-03-27 16:33:19 +00:00
d01aa13ee7 fix(tsconfig): add Node.js type definitions to TypeScript compiler options 2026-03-27 16:33:19 +00:00
4 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## 2026-03-27 - 2.5.3 - fix(tsconfig)
add Node.js type definitions to TypeScript compiler options
- Includes the node type library in tsconfig to improve recognition of Node.js globals and APIs during type checking.
## 2026-03-27 - 2.5.2 - fix(build,types)
migrate smart config filename and tighten TypeScript null handling

View File

@@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-domtools",
"version": "2.5.2",
"version": "2.5.3",
"private": false,
"description": "A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.",
"main": "dist_ts/index.js",

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-domtools',
version: '2.5.2',
version: '2.5.3',
description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.'
}

View File

@@ -4,7 +4,8 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"verbatimModuleSyntax": true
"verbatimModuleSyntax": true,
"types": ["node"]
},
"exclude": [
"dist_*/**/*.d.ts"