Skip to content

Commit

Permalink
Merge pull request #546 from suniahk/master
Browse files Browse the repository at this point in the history
  • Loading branch information
werthdavid authored Jan 25, 2023
2 parents 1e9ccb3 + 8db9f66 commit e8ba123
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
5 changes: 3 additions & 2 deletions tsconfig.lib-cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "dist/cjs"
"outDir": "dist/cjs",
"sourceMap": false
},
"exclude": [
"src/test"
]
}
}
5 changes: 3 additions & 2 deletions tsconfig.lib-es2015.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"compilerOptions": {
"module": "es2015",
"target": "es2015",
"outDir": "dist/es2015"
"outDir": "dist/es2015",
"sourceMap": false
},
"exclude": [
"src/test"
]
}
}
5 changes: 3 additions & 2 deletions tsconfig.lib-esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"compilerOptions": {
"module": "es2015",
"target": "es5",
"outDir": "dist/esm"
"outDir": "dist/esm",
"sourceMap": false
},
"exclude": [
"src/test"
]
}
}
3 changes: 2 additions & 1 deletion tsconfig.lib-esnext.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"outDir": "dist/esnext"
"outDir": "dist/esnext",
"sourceMap": false
},
"exclude": [
"src/test"
Expand Down

0 comments on commit e8ba123

Please sign in to comment.