Skip to content

Commit

Permalink
Merge pull request #375 from Marco-Prontera/fix/374
Browse files Browse the repository at this point in the history
[#374] Fix cjs output target with ES5
  • Loading branch information
kenario committed Oct 26, 2022
2 parents d21927f + 0522880 commit 9f32faf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/cli/tsconfig-cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rootDir": "src",
"outDir": "lib/cjs",
"module": "commonjs",
"target": "es2015"
"target": "ES5"
},
"exclude": [
"node_modules"
Expand Down
2 changes: 1 addition & 1 deletion modules/cmpapi/tsconfig-cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rootDir": "src",
"outDir": "lib/cjs",
"module": "commonjs",
"target": "es2015"
"target": "ES5"
},
"exclude": [
"node_modules"
Expand Down
2 changes: 1 addition & 1 deletion modules/core/tsconfig-cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rootDir": "src",
"outDir": "lib/cjs",
"module": "commonjs",
"target": "es2015"
"target": "ES5"
},
"exclude": [
"node_modules"
Expand Down
2 changes: 1 addition & 1 deletion modules/testing/tsconfig-cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rootDir": "src",
"outDir": "lib/cjs",
"module": "commonjs",
"target": "es2015"
"target": "ES5"
},
"exclude": [
"node_modules"
Expand Down

0 comments on commit 9f32faf

Please sign in to comment.