diff --git a/package.json b/package.json index 205b98e..e2664f0 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,8 @@ "name": "romulus-js", "version": "1.0.0", "description": "An implementation of the Romulus-M cryptography specification.", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", + "main": "index.js", + "types": "index", "scripts": { "lint": "ts-standard", "test": "jest", diff --git a/tsconfig.json b/tsconfig.json index aabd87d..f48a496 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,7 @@ "declaration": true }, "exclude": [ - "./tests/**/*", - "./dist/**/*" + "tests", + "dist" ] }