Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

[Build, Compiler, Refactor] Upgrade typescript and add optional-chaining and nullish-coalescing #4604

Merged
merged 5 commits into from
Jan 16, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
upgrade [email protected] and add '?.' and '??' operators
  • Loading branch information
calebroseland committed Dec 31, 2019
commit 3ababca31d982273b28463b45633188a9e879c51
2 changes: 2 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ const config = {
'@babel/proposal-object-rest-spread',
'react-hot-loader/babel',
'babel-plugin-typescript-to-proptypes',
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-nullish-coalescing-operator'
],
};

Expand Down
54 changes: 46 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,17 @@
"reselect": "4.0.0",
"semver": "6.3.0",
"superagent": "5.1.0",
"typescript": "3.6.4",
"typescript": "3.7.4",
"xregexp": "4.2.4",
"zen-observable": "0.8.14"
},
"devDependencies": {
"@babel/cli": "7.6.4",
"@babel/core": "7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
calebroseland marked this conversation as resolved.
Show resolved Hide resolved
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
Expand Down