Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@
],
"license": "MIT",
"main": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"@types/nodemailer": "^6.4.9",
"nodemailer": "^6.9.4"
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
"declaration": true,
"outDir": "./dist",
"skipLibCheck": true,
"esModuleInterop": true
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declarationMap": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CodeRabbit says we can skip this, is it true?

Image

},
"include": ["src"],
"exclude": ["node_modules", "examples"]
Expand Down