Skip to content

Commit

Permalink
chore: added exports and different tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn committed Mar 12, 2024
1 parent c030d53 commit 378bf3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Build SQS-based Node applications without the boilerplate",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"target": "es2022",
"module": "esnext",
"module": "Node16",
"moduleResolution": "Node16",
"outDir": "dist",
"sourceMap": false,
"moduleResolution": "node",
"allowJs": false,
"noUnusedLocals": true,
"declaration": true
Expand Down

0 comments on commit 378bf3e

Please sign in to comment.