-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating deps to ensure everything is working correctly
- Loading branch information
1 parent
c377866
commit c4a247c
Showing
4 changed files
with
1,176 additions
and
1,144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,20 @@ | |
"version": "3.0.0", | ||
"private": false, | ||
"type": "module", | ||
"description": "Making binding and unbinding DOM events easier", | ||
"description": "Safe binding and unbinding DOM events", | ||
"author": "Alex Reardon <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/alexreardon/bind-event-listener.git" | ||
}, | ||
"keywords": [ | ||
"event listener", | ||
"event handler", | ||
"dom events", | ||
"dom", | ||
"ui", | ||
"event listener", | ||
"event handler" | ||
"bind" | ||
], | ||
"module": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
|
@@ -24,7 +26,7 @@ | |
}, | ||
"sideEffects": false, | ||
"config": { | ||
"prettier_target": "src/**/*.{ts,js,jsx,md,json} test/**/*.{ts,js,jsx,md,json}" | ||
"prettier_target": "src/**/*.ts test/**/*.ts" | ||
}, | ||
"files": [ | ||
"/dist", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"target": "ES2022", | ||
}, | ||
"include": ["**/*"] | ||
} | ||
"include": [ | ||
"**/*" | ||
] | ||
} |
Oops, something went wrong.