Skip to content

Commit

Permalink
fix: Compat for older iOS/Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed Mar 9, 2021
1 parent c67bc13 commit b0d806b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tsconfig.cjs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2019", // Transpile optional chaining operator
"target": "ES2016", // Transpile optional chaining operator
"module": "CommonJS",
"outDir": "./dist/cjs"
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2018",
"target": "ES2016",
"module": "ESNext",
"outDir": "./dist/esm"
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2019", // Transpile optional chaining operator
"target": "ES2016", // Transpile optional chaining operator
"module": "CommonJS",
"noEmit": true
}
Expand Down

0 comments on commit b0d806b

Please sign in to comment.