@qvaroo/configs 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/index.mjs +14 -0
  2. package/package.json +2 -1
package/index.mjs ADDED
@@ -0,0 +1,14 @@
1
+ import cjs from './index.js';
2
+
3
+ export const {
4
+ eslint,
5
+ eslintReact,
6
+ eslintNode,
7
+ prettier,
8
+ namingConventions,
9
+ codeQuality,
10
+ architecture,
11
+ spellcheck
12
+ } = cjs;
13
+
14
+ export default cjs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qvaroo/configs",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Centralized Qvaroo coding standards, ESLint, Prettier, and TypeScript configurations for TypeScript frontend projects",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -24,6 +24,7 @@
24
24
  "prettier/",
25
25
  "typescript/",
26
26
  "index.js",
27
+ "index.mjs",
27
28
  "index.d.ts"
28
29
  ],
29
30
  "exports": {