Skip to content

Commit

Permalink
fixed: imports using tslib, deps update
Browse files Browse the repository at this point in the history
fixed: imports using tslib, deps update
bump npm version
  • Loading branch information
Salmandabbakuti committed Nov 18, 2023
1 parent 7f22d21 commit 643dd42
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
src/
test/
test/

*.env
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "super-jwt",
"version": "0.0.9",
"version": "0.1.0",
"description": "Super-JWT helps to authenticate your users based on Superfluid streams using JSON Web Tokens (JWT)",
"author": "Salman Dabbakuti",
"license": "MIT",
Expand All @@ -21,15 +21,14 @@
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/chai-as-promised": "^7.1.6",
"@types/jsonwebtoken": "^9.0.3",
"@types/mocha": "^10.0.2",
"@types/chai": "^4.3.10",
"@types/chai-as-promised": "^7.1.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/mocha": "^10.0.4",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"include": ["src"],
"exclude": ["./test/", "./node_modules/", "./dist/"],
"compilerOptions": {
"target": "es5",
"target": "es2020",
"module": "commonjs",
"importHelpers": true,
"importHelpers": false,
// output .d.ts declaration files for consumers
"declaration": true,
// output .js.map sourcemap files for consumers
Expand Down

0 comments on commit 643dd42

Please sign in to comment.