diff --git a/package.json b/package.json index 7dbbe47..ac5b9dd 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "version": "0.0.0", "description": "Uno game implementation in JavaScript", "homepage": "https://github.com/danguilherme/uno#readme", - "main": "dist/studio-essentials.cjs.js", - "module": "dist/studio-essentials.esm.js", - "browser": "dist/studio-essentials.umd.js", + "main": "dist/uno-engine.cjs.js", + "module": "dist/uno-engine.esm.js", + "browser": "dist/uno-engine.umd.js", "types": "dist/src/uno-engine.d.ts", "scripts": { "build": "rollup -c --bundleConfigAsCjs", diff --git a/tsconfig.json b/tsconfig.json index fd49eef..950f0e0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "lib": ["ES6"], "declaration": true, "esModuleInterop": true, - "target": "es5", + "target": "ES6", "noImplicitAny": true, "moduleResolution": "node", "sourceMap": true,