Skip to content

Commit

Permalink
revert: feat(cdk): update tsconfig to more modern settings in typescr…
Browse files Browse the repository at this point in the history
…ipt init templates (#31953)

This reverts #31927

There are some TypeScript init tests failed. Revert the change for now so that it doesn't block the release.

Will investigate why those test failed.

### Issue # (if applicable)

Closes #<issue number here>.

### Reason for this change



### Description of changes



### Description of how you validated changes



### Checklist
- [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
xazhao authored Oct 31, 2024
1 parent 3b28c50 commit 6f106c7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"target": "ES2020",
"module": "commonjs",
"lib": [
"ES2023",
"es2020",
"dom"
],
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"target": "ES2020",
"module": "commonjs",
"lib": [
"ES2023",
"es2020",
"dom"
],
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
Expand Down

0 comments on commit 6f106c7

Please sign in to comment.