Skip to content

Commit

Permalink
fix: enable source map
Browse files Browse the repository at this point in the history
  • Loading branch information
magalimorin18 committed Aug 21, 2023
1 parent f9d12fd commit e3c60b3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
types/ethers-v5
test/

cache
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@
"CHANGELOG.md",
"LICENSE",
"CONTRIBUTING.md",
"README.md"
"README.md",
"src/*",
"types/*"
],
"ava": {
"failFast": true,
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"moduleResolution": "node",
"module": "commonjs",
"declaration": true,
"inlineSourceMap": false,
"sourceMap": true,
"inlineSourceMap": true,
"sourceMap": false,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"resolveJsonModule": true /* Include modules imported with .json extension. */,

Expand Down
3 changes: 2 additions & 1 deletion tsconfig.module.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"compilerOptions": {
"target": "es2015",
"outDir": "build/module",
"module": "es2015"
"module": "es2015",
"inlineSourceMap": true
}
}

0 comments on commit e3c60b3

Please sign in to comment.