@walkeros/config 2.1.1 → 2.2.0-next-1773136823705

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/jest/index.mjs +20 -0
  2. package/package.json +1 -1
package/jest/index.mjs CHANGED
@@ -132,6 +132,26 @@ const config = {
132
132
  '/coverage/',
133
133
  '.tmp',
134
134
  ],
135
+
136
+ // Coverage settings
137
+ coverageThreshold: {
138
+ global: {
139
+ lines: 60,
140
+ branches: 50,
141
+ functions: 50,
142
+ statements: 60,
143
+ },
144
+ },
145
+
146
+ coverageReporters: ['text', 'text-summary', 'lcov'],
147
+
148
+ coveragePathIgnorePatterns: [
149
+ '/node_modules/',
150
+ '/dist/',
151
+ '/__tests__/',
152
+ '/examples/',
153
+ '/dev.ts',
154
+ ],
135
155
  };
136
156
 
137
157
  export default config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@walkeros/config",
3
- "version": "2.1.1",
3
+ "version": "2.2.0-next-1773136823705",
4
4
  "type": "module",
5
5
  "description": "Shared development configuration for walkerOS packages (TypeScript, ESLint, Jest, tsup)",
6
6
  "license": "MIT",