diff --git a/packages/core/package.json b/packages/core/package.json index 0dc09cde..c2fe5701 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@dark-engine/core", - "version": "0.9.5", + "version": "0.9.6", "description": "Dark is lightweight (10 Kb gzipped) component-and-hook-based UI rendering engine for javascript apps without dependencies and written in TypeScript 💫", "author": "AlexPlex", "license": "MIT", diff --git a/packages/platform-browser/package.json b/packages/platform-browser/package.json index 3b7e5255..789436a2 100644 --- a/packages/platform-browser/package.json +++ b/packages/platform-browser/package.json @@ -1,6 +1,6 @@ { "name": "@dark-engine/platform-browser", - "version": "0.9.5", + "version": "0.9.6", "description": "Dark is lightweight (10 Kb gzipped) component-and-hook-based UI rendering engine for javascript apps without dependencies and written in TypeScript 💫", "author": "AlexPlex", "license": "MIT", diff --git a/tsconfig.json b/tsconfig.json index 6c5e2be9..31382d1d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "ESNext", + "target": "ES6", "moduleResolution": "node", "esModuleInterop": true, "module": "esnext", @@ -14,7 +14,8 @@ "jsxFactory": "h", "jsxFragmentFactory": "Fragment", "lib": [ - "ESNext", + "ES6", + "ES7", "dom" ], "baseUrl": ".",