Skip to content

Commit

Permalink
include '/dist' in package, closes #280
Browse files Browse the repository at this point in the history
  • Loading branch information
jfromaniello committed Apr 20, 2022
1 parent ef6d488 commit cf2665d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@
"url": "https://www.auth0.com/"
},
"license": "MIT",
"main": "./dist",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"express-unless": "^1.0.0",
"jsonwebtoken": "^8.5.1"
Expand Down
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"outDir": "./dist",
"allowJs": true,
"target": "es5",
"esModuleInterop": true
"esModuleInterop": true,
"declaration": true
},
"include": ["./src/**/*"]
"include": [
"./src/**/*"
]
}

0 comments on commit cf2665d

Please sign in to comment.