@promoboxx/react-scripts-vite 0.1.0 → 0.1.3

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.
@@ -0,0 +1,27 @@
1
+ import { UserConfig } from 'vite';
2
+ export declare const viteConfig: UserConfig;
3
+ export declare const jestConfig: {
4
+ clearMocks: boolean;
5
+ collectCoverageFrom: string[];
6
+ coverageProvider: string;
7
+ moduleFileExtensions: string[];
8
+ moduleNameMapper: {
9
+ '^react-native$': string;
10
+ '^.+\\.module\\.(css|sass|scss)$': string;
11
+ };
12
+ preset: string;
13
+ resetMocks: boolean;
14
+ roots: string[];
15
+ setupFiles: string[];
16
+ setupFilesAfterEnv: string[];
17
+ testEnvironment: string;
18
+ testMatch: string[];
19
+ testRunner: string;
20
+ transform: {
21
+ '^.+\\.css$': string;
22
+ '^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|json)$)': string;
23
+ };
24
+ transformIgnorePatterns: string[];
25
+ verbose: boolean;
26
+ watchPlugins: string[];
27
+ };
package/dist/index.js CHANGED
@@ -194,3 +194,4 @@ exports.jestConfig = {
194
194
  // Whether to use watchman for file crawling
195
195
  // watchman: true,
196
196
  };
197
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/react-scripts-vite",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -28,6 +28,7 @@
28
28
  "vite-tsconfig-paths": "^3.3.13"
29
29
  },
30
30
  "files": [
31
- "./dist/index.js"
31
+ "dist/index.d.ts",
32
+ "dist/index.js"
32
33
  ]
33
34
  }