Skip to content

Commit

Permalink
Merge pull request #404 from dwyl/path-resolve-#403
Browse files Browse the repository at this point in the history
[PR] Fixing typescript path not resolving
  • Loading branch information
nelsonic committed May 18, 2024
2 parents d9fc691 + a130198 commit d1ca9ab
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
Empty file added .npmignore
Empty file.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"name": "aws-sdk-mock",
"version": "6.0.0",
"version": "6.0.1",
"description": "Functions to mock the JavaScript aws-sdk",
"type": "module",
"main": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "tsc",
"nocov": "ts-mocha test/**/*.spec.ts",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
},
"exclude": [
"babel.config.cjs",
"node_modules/**/*"
"node_modules/**/*",
"dist/**/*",
]
}

0 comments on commit d1ca9ab

Please sign in to comment.