@datapos/datapos-development 0.3.422 → 0.3.424

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/eslint.config.ts CHANGED
@@ -2,8 +2,8 @@
2
2
  * ESLint configuration.
3
3
  */
4
4
 
5
- // Dependencies - Framework.
5
+ /** Dependencies - Framework. */
6
6
  import datapos from '@datapos/eslint-config-datapos';
7
7
 
8
- // Exposures - Configuration.
8
+ /** Exposures - Configuration. */
9
9
  export default [...datapos];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.422",
3
+ "version": "0.3.424",
4
4
  "description": "A collection of utilities for managing Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
package/tsconfig.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "declaration": true, // Emit .d.ts files so consumers get typings.
5
5
  "esModuleInterop": true, // Allow default-import syntax for CommonJS packages.
6
6
  "isolatedModules": true, // Treat each file as a separate module; keeps Vite happy.
7
- "lib": ["ESNext"], // Target the latest JavaScript libs and built-ins.
7
+ "lib": ["ESNext", "dom"], // Target the latest JavaScript libs and built-ins.
8
8
  "module": "ESNext", // Generate native ESM output for bundlers.
9
9
  "moduleResolution": "bundler", // Resolve modules like a bundler (needed for aliases and imports such as 'sonda/vite').
10
10
  "noUncheckedIndexedAccess": true, // Enforce checks when indexing into objects or arrays.