diff --git a/jest.config.js b/jest.config.js index 16d7148..ab2473b 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,9 +1,14 @@ -export default { - roots: ['/src'], - transform: { - '^.+\\.tsx?$': 'ts-jest', +module.exports = { + "roots": [ + "/src" + ], + "transform": { + "^.+\\.tsx?$": "ts-jest" }, - automock: false, - setupFiles: ['./setupJest.js', 'jest-localstorage-mock'], - testEnvironment: 'jsdom', -}; + "automock": false, + "setupFiles": [ + "./setupJest.js", + "jest-localstorage-mock" + ], + "testEnvironment": "jsdom" +} diff --git a/package.json b/package.json index 8370150..00d85d3 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,7 @@ { "name": "unleash-proxy-client", - "version": "3.0.0", + "version": "3.0.1", "description": "A browser client that can be used together with the unleash-proxy.", - "type": "module", "main": "./build/cjs/index.js", "types": "./build/cjs/index.d.ts", "browser": "./build/main.min.js",