File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Changed
11
11
12
+ - Change the compiler target from ` es5 ` to ` es2015 ` which has been round for 7+ years. It is time to move on.
12
13
- Refactor ` ReCaptcha ` from class-based to functional component using React Hooks.
13
14
- Change the minimum supported React version to ` 16.8.0 ` , which is the first React version to introduce Hooks.
14
15
- Refactor constants outside the ` ReCaptcha ` component.
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- "target" : " es5 " ,
3
+ "target" : " es2015 " ,
4
4
"module" : " es2015" ,
5
5
"moduleResolution" : " node" , // must be set because of module: "es2015" which will default resolution to "classic".
6
6
"lib" : [" es2015" , " dom" ],
You can’t perform that action at this time.
0 commit comments