@regardio/dev 1.11.3 → 1.11.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.
@@ -5,18 +5,18 @@ export declare const coverageThresholds: {
5
5
  statements: number;
6
6
  };
7
7
  export declare const vitestNodeConfig: {
8
- readonly coverage: {
9
- readonly provider: "v8";
10
- readonly thresholds: {
8
+ coverage: {
9
+ provider: "v8";
10
+ thresholds: {
11
11
  branches: number;
12
12
  functions: number;
13
13
  lines: number;
14
14
  statements: number;
15
15
  };
16
16
  };
17
- readonly environment: "node";
18
- readonly exclude: readonly ["node_modules", "dist", "build", ".turbo", ".react-router"];
19
- readonly globals: true;
20
- readonly include: readonly ["**/*.test.ts", "**/*.test.tsx"];
17
+ environment: string;
18
+ exclude: string[];
19
+ globals: boolean;
20
+ include: string[];
21
21
  };
22
22
  //# sourceMappingURL=node.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../src/vitest/node.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,kBAAkB;;;;;CAK9B,CAAC;AAMF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;CASnB,CAAC"}
1
+ {"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../src/vitest/node.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,kBAAkB;;;;;CAK9B,CAAC;AAMF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;CAS5B,CAAC"}
@@ -1,17 +1,17 @@
1
1
  export declare const vitestReactConfig: {
2
- readonly coverage: {
3
- readonly provider: "v8";
4
- readonly thresholds: {
2
+ coverage: {
3
+ provider: "v8";
4
+ thresholds: {
5
5
  branches: number;
6
6
  functions: number;
7
7
  lines: number;
8
8
  statements: number;
9
9
  };
10
10
  };
11
- readonly environment: "jsdom";
12
- readonly exclude: readonly ["node_modules", "dist", "build", ".turbo", ".react-router"];
13
- readonly globals: true;
14
- readonly include: readonly ["**/*.test.ts", "**/*.test.tsx"];
15
- readonly setupFiles: readonly ["./src/test-setup.ts"];
11
+ environment: string;
12
+ exclude: string[];
13
+ globals: boolean;
14
+ include: string[];
15
+ setupFiles: string[];
16
16
  };
17
17
  //# sourceMappingURL=react.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"react.d.ts","sourceRoot":"","sources":["../../src/vitest/react.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;CAUpB,CAAC"}
1
+ {"version":3,"file":"react.d.ts","sourceRoot":"","sources":["../../src/vitest/react.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;CAU7B,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "@regardio/dev",
4
- "version": "1.11.3",
4
+ "version": "1.11.4",
5
5
  "private": false,
6
6
  "description": "Regardio developer tooling for testing, linting, and build workflows",
7
7
  "keywords": [
@@ -15,11 +15,11 @@ export const coverageThresholds = {
15
15
  */
16
16
  export const vitestNodeConfig = {
17
17
  coverage: {
18
- provider: 'v8',
18
+ provider: 'v8' as const,
19
19
  thresholds: coverageThresholds,
20
20
  },
21
21
  environment: 'node',
22
22
  exclude: ['node_modules', 'dist', 'build', '.turbo', '.react-router'],
23
23
  globals: true,
24
24
  include: ['**/*.test.ts', '**/*.test.tsx'],
25
- } as const;
25
+ };
@@ -8,7 +8,7 @@ import { coverageThresholds } from './node';
8
8
  */
9
9
  export const vitestReactConfig = {
10
10
  coverage: {
11
- provider: 'v8',
11
+ provider: 'v8' as const,
12
12
  thresholds: coverageThresholds,
13
13
  },
14
14
  environment: 'jsdom',
@@ -16,4 +16,4 @@ export const vitestReactConfig = {
16
16
  globals: true,
17
17
  include: ['**/*.test.ts', '**/*.test.tsx'],
18
18
  setupFiles: ['./src/test-setup.ts'],
19
- } as const;
19
+ };