@promoboxx/react-scripts-vite 0.1.3 → 0.1.6

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/dist/index.d.ts CHANGED
@@ -1,27 +0,0 @@
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
@@ -1,197 +1,2 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.jestConfig = exports.viteConfig = void 0;
7
- var plugin_react_refresh_1 = __importDefault(require("@vitejs/plugin-react-refresh"));
8
- var vite_plugin_checker_1 = __importDefault(require("vite-plugin-checker"));
9
- var vite_plugin_env_compatible_1 = __importDefault(require("vite-plugin-env-compatible"));
10
- var vite_plugin_svgr_1 = __importDefault(require("vite-plugin-svgr"));
11
- var vite_react_jsx_1 = __importDefault(require("vite-react-jsx"));
12
- var vite_tsconfig_paths_1 = __importDefault(require("vite-tsconfig-paths"));
13
- exports.viteConfig = {
14
- build: {
15
- outDir: 'build',
16
- sourcemap: true,
17
- },
18
- plugins: [
19
- // React specific.
20
- plugin_react_refresh_1.default(),
21
- vite_plugin_svgr_1.default(),
22
- vite_react_jsx_1.default(),
23
- // import.meta.env -> process.env
24
- vite_plugin_env_compatible_1.default(),
25
- // Support TypeScript paths.
26
- vite_tsconfig_paths_1.default(),
27
- // Check for issues.
28
- // TODO
29
- // https://github.com/fi3ework/vite-plugin-checker/issues/68
30
- vite_plugin_checker_1.default({
31
- eslint: {
32
- files: ['./src'],
33
- extensions: ['.js', '.jsx', '.ts', '.tsx', '.graphql'],
34
- // maxWarnings: process.env.CI === 'true' ? 0 : -1,
35
- },
36
- typescript: true,
37
- enableBuild: true,
38
- }),
39
- ],
40
- resolve: {
41
- alias: {
42
- // This fixes weird styling issues with material-ui.
43
- '@material-ui/core': '@material-ui/core/esm',
44
- '@material-ui/icons': '@material-ui/icons/esm',
45
- },
46
- },
47
- };
48
- exports.jestConfig = {
49
- // All imported modules in your tests should be mocked automatically
50
- // automock: false,
51
- // Stop running tests after `n` failures
52
- // bail: 0,
53
- // The directory where Jest should store its cached dependency information
54
- // cacheDirectory: "/tmp/jest_rs",
55
- // Automatically clear mock calls and instances between every test
56
- clearMocks: true,
57
- // Indicates whether the coverage information should be collected while executing the test
58
- // collectCoverage: false,
59
- // An array of glob patterns indicating a set of files for which coverage information should be collected
60
- collectCoverageFrom: ['src/**/*.{js,jsx,ts,tsx}', '!src/**/*.d.ts'],
61
- // The directory where Jest should output its coverage files
62
- // coverageDirectory: undefined,
63
- // An array of regexp pattern strings used to skip coverage collection
64
- // coveragePathIgnorePatterns: [
65
- // "/node_modules/"
66
- // ],
67
- // Indicates which provider should be used to instrument code for coverage
68
- coverageProvider: 'v8',
69
- // A list of reporter names that Jest uses when writing coverage reports
70
- // coverageReporters: [
71
- // "json",
72
- // "text",
73
- // "lcov",
74
- // "clover"
75
- // ],
76
- // An object that configures minimum threshold enforcement for coverage results
77
- // coverageThreshold: undefined,
78
- // A path to a custom dependency extractor
79
- // dependencyExtractor: undefined,
80
- // Make calling deprecated APIs throw helpful error messages
81
- // errorOnDeprecated: false,
82
- // Force coverage collection from ignored files using an array of glob patterns
83
- // forceCoverageMatch: [],
84
- // A path to a module which exports an async function that is triggered once before all test suites
85
- // globalSetup: undefined,
86
- // A path to a module which exports an async function that is triggered once after all test suites
87
- // globalTeardown: undefined,
88
- // A set of global variables that need to be available in all test environments
89
- // globals: {},
90
- // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
91
- // maxWorkers: "50%",
92
- // An array of directory names to be searched recursively up from the requiring module's location
93
- // moduleDirectories: [
94
- // "node_modules"
95
- // ],
96
- // An array of file extensions your modules use
97
- moduleFileExtensions: [
98
- 'web.js',
99
- 'js',
100
- 'web.ts',
101
- 'ts',
102
- 'web.tsx',
103
- 'tsx',
104
- 'json',
105
- 'web.jsx',
106
- 'jsx',
107
- 'node',
108
- 'd.ts',
109
- ],
110
- // A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
111
- moduleNameMapper: {
112
- '^react-native$': 'react-native-web',
113
- '^.+\\.module\\.(css|sass|scss)$': 'identity-obj-proxy',
114
- },
115
- // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
116
- // modulePathIgnorePatterns: [],
117
- // Activates notifications for test results
118
- // notify: false,
119
- // An enum that specifies notification mode. Requires { notify: true }
120
- // notifyMode: "failure-change",
121
- // A preset that is used as a base for Jest's configuration
122
- preset: 'ts-jest/presets/js-with-ts',
123
- // Run tests from one or more projects
124
- // projects: undefined,
125
- // Use this configuration option to add custom reporters to Jest
126
- // reporters: undefined,
127
- // Automatically reset mock state between every test
128
- resetMocks: true,
129
- // Reset the module registry before running each individual test
130
- // resetModules: false,
131
- // A path to a custom resolver
132
- // resolver: undefined,
133
- // Automatically restore mock state between every test
134
- // restoreMocks: false,
135
- // The root directory that Jest should scan for tests and modules within
136
- // rootDir: undefined,
137
- // A list of paths to directories that Jest should use to search for files in
138
- roots: ['<rootDir>/src'],
139
- // Allows you to use a custom runner instead of Jest's default test runner
140
- // runner: "jest-runner",
141
- // The paths to modules that run some code to configure or set up the testing environment before each test
142
- setupFiles: [require.resolve('react-app-polyfill/jsdom')],
143
- // A list of paths to modules that run some code to configure or set up the testing framework before each test
144
- setupFilesAfterEnv: ['src/setupTests'],
145
- // The number of seconds after which a test is considered as slow and reported as such in the results.
146
- // slowTestThreshold: 5,
147
- // A list of paths to snapshot serializer modules Jest should use for snapshot testing
148
- // snapshotSerializers: [],
149
- // The test environment that will be used for testing
150
- testEnvironment: 'jest-environment-jsdom',
151
- // Options that will be passed to the testEnvironment
152
- // testEnvironmentOptions: {},
153
- // Adds a location field to test results
154
- // testLocationInResults: false,
155
- // The glob patterns Jest uses to detect test files
156
- testMatch: [
157
- '<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}',
158
- '<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}',
159
- ],
160
- // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
161
- // testPathIgnorePatterns: [
162
- // "/node_modules/"
163
- // ],
164
- // The regexp pattern or array of patterns that Jest uses to detect test files
165
- // testRegex: [],
166
- // This option allows the use of a custom results processor
167
- // testResultsProcessor: undefined,
168
- // This option allows use of a custom test runner
169
- testRunner: require.resolve('jest-circus/runner'),
170
- // This option sets the URL for the jsdom environment. It is reflected in properties such as location.href
171
- // testURL: "http://localhost",
172
- // Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout"
173
- // timers: "real",
174
- // A map from regular expressions to paths to transformers
175
- transform: {
176
- '^.+\\.css$': require.resolve('./jest/cssTransform.js'),
177
- '^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|json)$)': require.resolve('./jest/fileTransform.js'),
178
- },
179
- // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
180
- transformIgnorePatterns: [
181
- '[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$',
182
- '^.+\\.module\\.(css|sass|scss)$',
183
- ],
184
- // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
185
- // unmockedModulePathPatterns: undefined,
186
- // Indicates whether each individual test should be reported during the run
187
- verbose: true,
188
- // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
189
- // watchPathIgnorePatterns: [],
190
- watchPlugins: [
191
- 'jest-watch-typeahead/filename',
192
- 'jest-watch-typeahead/testname',
193
- ],
194
- // Whether to use watchman for file crawling
195
- // watchman: true,
196
- };
197
2
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,5 @@
1
+ declare const cssTransform: {
2
+ process(): string;
3
+ getCacheKey(): string;
4
+ };
5
+ export default cssTransform;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ // https://github.com/mikew/create-react-app/blob/v4.0.3-tsc/packages/react-scripts/config/jest/cssTransform.js
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ var cssTransform = {
5
+ process: function () {
6
+ return 'module.exports = {};';
7
+ },
8
+ getCacheKey: function () {
9
+ return 'cssTransform';
10
+ },
11
+ };
12
+ exports.default = cssTransform;
13
+ //# sourceMappingURL=cssTransform.js.map
@@ -0,0 +1,4 @@
1
+ declare const fileTransform: {
2
+ process(src: string, filename: string): string;
3
+ };
4
+ export default fileTransform;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ var path_1 = __importDefault(require("path"));
7
+ var camelcase_1 = __importDefault(require("camelcase"));
8
+ // This is a custom Jest transformer turning file imports into filenames.
9
+ // http://facebook.github.io/jest/docs/en/webpack.html
10
+ var fileTransform = {
11
+ process: function (src, filename) {
12
+ var assetFilename = JSON.stringify(path_1.default.basename(filename));
13
+ if (filename.match(/\.svg$/)) {
14
+ // Based on how SVGR generates a component name:
15
+ // https://github.com/smooth-code/svgr/blob/01b194cf967347d43d4cbe6b434404731b87cf27/packages/core/src/state.js#L6
16
+ var pascalCaseFilename = camelcase_1.default(path_1.default.parse(filename).name, {
17
+ pascalCase: true,
18
+ });
19
+ var componentName = "Svg" + pascalCaseFilename;
20
+ return "const React = require('react');\n module.exports = {\n __esModule: true,\n default: " + assetFilename + ",\n ReactComponent: React.forwardRef(function " + componentName + "(props, ref) {\n return {\n $$typeof: Symbol.for('react.element'),\n type: 'svg',\n ref: ref,\n key: null,\n props: Object.assign({}, props, {\n children: " + assetFilename + "\n })\n };\n }),\n };";
21
+ }
22
+ return "module.exports = " + assetFilename + ";";
23
+ },
24
+ };
25
+ exports.default = fileTransform;
26
+ //# sourceMappingURL=fileTransform.js.map
@@ -0,0 +1,26 @@
1
+ declare const jestConfig: {
2
+ clearMocks: boolean;
3
+ collectCoverageFrom: string[];
4
+ coverageProvider: string;
5
+ moduleFileExtensions: string[];
6
+ moduleNameMapper: {
7
+ '^react-native$': string;
8
+ '^.+\\.module\\.(css|sass|scss)$': string;
9
+ };
10
+ preset: string;
11
+ resetMocks: boolean;
12
+ roots: string[];
13
+ setupFiles: string[];
14
+ setupFilesAfterEnv: string[];
15
+ testEnvironment: string;
16
+ testMatch: string[];
17
+ testRunner: string;
18
+ transform: {
19
+ '^.+\\.css$': string;
20
+ '^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|json)$)': string;
21
+ };
22
+ transformIgnorePatterns: string[];
23
+ verbose: boolean;
24
+ watchPlugins: string[];
25
+ };
26
+ export default jestConfig;
@@ -0,0 +1,153 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var jestConfig = {
4
+ // All imported modules in your tests should be mocked automatically
5
+ // automock: false,
6
+ // Stop running tests after `n` failures
7
+ // bail: 0,
8
+ // The directory where Jest should store its cached dependency information
9
+ // cacheDirectory: "/tmp/jest_rs",
10
+ // Automatically clear mock calls and instances between every test
11
+ clearMocks: true,
12
+ // Indicates whether the coverage information should be collected while executing the test
13
+ // collectCoverage: false,
14
+ // An array of glob patterns indicating a set of files for which coverage information should be collected
15
+ collectCoverageFrom: ['src/**/*.{js,jsx,ts,tsx}', '!src/**/*.d.ts'],
16
+ // The directory where Jest should output its coverage files
17
+ // coverageDirectory: undefined,
18
+ // An array of regexp pattern strings used to skip coverage collection
19
+ // coveragePathIgnorePatterns: [
20
+ // "/node_modules/"
21
+ // ],
22
+ // Indicates which provider should be used to instrument code for coverage
23
+ coverageProvider: 'v8',
24
+ // A list of reporter names that Jest uses when writing coverage reports
25
+ // coverageReporters: [
26
+ // "json",
27
+ // "text",
28
+ // "lcov",
29
+ // "clover"
30
+ // ],
31
+ // An object that configures minimum threshold enforcement for coverage results
32
+ // coverageThreshold: undefined,
33
+ // A path to a custom dependency extractor
34
+ // dependencyExtractor: undefined,
35
+ // Make calling deprecated APIs throw helpful error messages
36
+ // errorOnDeprecated: false,
37
+ // Force coverage collection from ignored files using an array of glob patterns
38
+ // forceCoverageMatch: [],
39
+ // A path to a module which exports an async function that is triggered once before all test suites
40
+ // globalSetup: undefined,
41
+ // A path to a module which exports an async function that is triggered once after all test suites
42
+ // globalTeardown: undefined,
43
+ // A set of global variables that need to be available in all test environments
44
+ // globals: {},
45
+ // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
46
+ // maxWorkers: "50%",
47
+ // An array of directory names to be searched recursively up from the requiring module's location
48
+ // moduleDirectories: [
49
+ // "node_modules"
50
+ // ],
51
+ // An array of file extensions your modules use
52
+ moduleFileExtensions: [
53
+ 'web.js',
54
+ 'js',
55
+ 'web.ts',
56
+ 'ts',
57
+ 'web.tsx',
58
+ 'tsx',
59
+ 'json',
60
+ 'web.jsx',
61
+ 'jsx',
62
+ 'node',
63
+ 'd.ts',
64
+ ],
65
+ // A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
66
+ moduleNameMapper: {
67
+ '^react-native$': 'react-native-web',
68
+ '^.+\\.module\\.(css|sass|scss)$': 'identity-obj-proxy',
69
+ },
70
+ // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
71
+ // modulePathIgnorePatterns: [],
72
+ // Activates notifications for test results
73
+ // notify: false,
74
+ // An enum that specifies notification mode. Requires { notify: true }
75
+ // notifyMode: "failure-change",
76
+ // A preset that is used as a base for Jest's configuration
77
+ preset: 'ts-jest/presets/js-with-ts',
78
+ // Run tests from one or more projects
79
+ // projects: undefined,
80
+ // Use this configuration option to add custom reporters to Jest
81
+ // reporters: undefined,
82
+ // Automatically reset mock state between every test
83
+ resetMocks: true,
84
+ // Reset the module registry before running each individual test
85
+ // resetModules: false,
86
+ // A path to a custom resolver
87
+ // resolver: undefined,
88
+ // Automatically restore mock state between every test
89
+ // restoreMocks: false,
90
+ // The root directory that Jest should scan for tests and modules within
91
+ // rootDir: undefined,
92
+ // A list of paths to directories that Jest should use to search for files in
93
+ roots: ['<rootDir>/src'],
94
+ // Allows you to use a custom runner instead of Jest's default test runner
95
+ // runner: "jest-runner",
96
+ // The paths to modules that run some code to configure or set up the testing environment before each test
97
+ setupFiles: [require.resolve('react-app-polyfill/jsdom')],
98
+ // A list of paths to modules that run some code to configure or set up the testing framework before each test
99
+ setupFilesAfterEnv: ['src/setupTests'],
100
+ // The number of seconds after which a test is considered as slow and reported as such in the results.
101
+ // slowTestThreshold: 5,
102
+ // A list of paths to snapshot serializer modules Jest should use for snapshot testing
103
+ // snapshotSerializers: [],
104
+ // The test environment that will be used for testing
105
+ testEnvironment: 'jest-environment-jsdom',
106
+ // Options that will be passed to the testEnvironment
107
+ // testEnvironmentOptions: {},
108
+ // Adds a location field to test results
109
+ // testLocationInResults: false,
110
+ // The glob patterns Jest uses to detect test files
111
+ testMatch: [
112
+ '<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}',
113
+ '<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}',
114
+ ],
115
+ // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
116
+ // testPathIgnorePatterns: [
117
+ // "/node_modules/"
118
+ // ],
119
+ // The regexp pattern or array of patterns that Jest uses to detect test files
120
+ // testRegex: [],
121
+ // This option allows the use of a custom results processor
122
+ // testResultsProcessor: undefined,
123
+ // This option allows use of a custom test runner
124
+ testRunner: require.resolve('jest-circus/runner'),
125
+ // This option sets the URL for the jsdom environment. It is reflected in properties such as location.href
126
+ // testURL: "http://localhost",
127
+ // Setting this value to "fake" allows the use of fake timers for functions such as "setTimeout"
128
+ // timers: "real",
129
+ // A map from regular expressions to paths to transformers
130
+ transform: {
131
+ '^.+\\.css$': require.resolve('./jest/cssTransform.js'),
132
+ '^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|json)$)': require.resolve('./jest/fileTransform.js'),
133
+ },
134
+ // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
135
+ transformIgnorePatterns: [
136
+ '[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$',
137
+ '^.+\\.module\\.(css|sass|scss)$',
138
+ ],
139
+ // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
140
+ // unmockedModulePathPatterns: undefined,
141
+ // Indicates whether each individual test should be reported during the run
142
+ verbose: true,
143
+ // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
144
+ // watchPathIgnorePatterns: [],
145
+ watchPlugins: [
146
+ 'jest-watch-typeahead/filename',
147
+ 'jest-watch-typeahead/testname',
148
+ ],
149
+ // Whether to use watchman for file crawling
150
+ // watchman: true,
151
+ };
152
+ exports.default = jestConfig;
153
+ //# sourceMappingURL=jestConfig.js.map
@@ -0,0 +1,3 @@
1
+ import { UserConfig } from 'vite';
2
+ declare const viteConfig: UserConfig;
3
+ export default viteConfig;
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ var plugin_react_refresh_1 = __importDefault(require("@vitejs/plugin-react-refresh"));
7
+ var vite_plugin_checker_1 = __importDefault(require("vite-plugin-checker"));
8
+ var vite_plugin_env_compatible_1 = __importDefault(require("vite-plugin-env-compatible"));
9
+ var vite_plugin_svgr_1 = __importDefault(require("vite-plugin-svgr"));
10
+ var vite_react_jsx_1 = __importDefault(require("vite-react-jsx"));
11
+ var vite_tsconfig_paths_1 = __importDefault(require("vite-tsconfig-paths"));
12
+ var viteConfig = {
13
+ build: {
14
+ outDir: 'build',
15
+ sourcemap: true,
16
+ },
17
+ plugins: [
18
+ // React specific.
19
+ plugin_react_refresh_1.default(),
20
+ vite_plugin_svgr_1.default(),
21
+ vite_react_jsx_1.default(),
22
+ // import.meta.env -> process.env
23
+ vite_plugin_env_compatible_1.default(),
24
+ // Support TypeScript paths.
25
+ vite_tsconfig_paths_1.default(),
26
+ // Check for issues.
27
+ // TODO
28
+ // https://github.com/fi3ework/vite-plugin-checker/issues/68
29
+ vite_plugin_checker_1.default({
30
+ eslint: {
31
+ files: ['./src'],
32
+ extensions: ['.js', '.jsx', '.ts', '.tsx', '.graphql'],
33
+ // maxWarnings: process.env.CI === 'true' ? 0 : -1,
34
+ },
35
+ typescript: true,
36
+ enableBuild: true,
37
+ }),
38
+ ],
39
+ resolve: {
40
+ alias: {
41
+ // This fixes weird styling issues with material-ui.
42
+ '@material-ui/core': '@material-ui/core/esm',
43
+ '@material-ui/icons': '@material-ui/icons/esm',
44
+ },
45
+ },
46
+ };
47
+ exports.default = viteConfig;
48
+ //# sourceMappingURL=viteConfig.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/react-scripts-vite",
3
- "version": "0.1.3",
3
+ "version": "0.1.6",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -19,6 +19,9 @@
19
19
  "@vitejs/plugin-react-refresh": "^1.3.6",
20
20
  "eslint": "^7.32.0",
21
21
  "jest": "^27.0.6",
22
+ "jest-circus": "^27.0.6",
23
+ "jest-watch-typeahead": "^0.6.4",
24
+ "react-app-polyfill": "^2.0.0",
22
25
  "ts-jest": "^27.0.5",
23
26
  "vite": "^2.5.0",
24
27
  "vite-plugin-checker": "^0.3.4",
@@ -29,6 +32,14 @@
29
32
  },
30
33
  "files": [
31
34
  "dist/index.d.ts",
32
- "dist/index.js"
35
+ "dist/index.js",
36
+ "dist/jestConfig.d.ts",
37
+ "dist/jestConfig.js",
38
+ "dist/jest/cssTransform.d.ts",
39
+ "dist/jest/cssTransform.js",
40
+ "dist/jest/fileTransform.d.ts",
41
+ "dist/jest/fileTransform.js",
42
+ "dist/viteConfig.d.ts",
43
+ "dist/viteConfig.js"
33
44
  ]
34
45
  }