diff --git a/package.json b/package.json index d00a13a..12218c7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@nightwatch/mobile-helper", "version": "0.0.1", "description": "Mobile helper tool to easily setup mobile requirements", - "main": "src/index.ts", + "main": "dist/index.js", "bin": "./index.js", "scripts": { "build": "tsc", diff --git a/tsconfig.json b/tsconfig.json index dd3bda7..140869b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,8 @@ "target": "ESNext", "module": "commonjs", "outDir": "lib", + "declaration": true, + "declarationMap": true, "strict": true, "noUnusedLocals": true, "noUnusedParameters": true,