Skip to content

Commit

Permalink
fix: change typescript compilation target
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiankachlock committed Jun 4, 2022
1 parent 48d8f6e commit 1933775
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsconfig.browser.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "esnext",
"target": "es5",
"module": "esnext",
"outDir": "dist/esm"
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "esnext",
"target": "es5",
"module": "commonjs",
"outDir": "dist/cjs"
}
Expand Down

0 comments on commit 1933775

Please sign in to comment.