Created
April 19, 2024 08:13
-
-
Save dreamorosi/8785f2a8ae9e868be65de1a44018b936 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "ES2022", | |
"module": "NodeNext", | |
"moduleResolution": "NodeNext", | |
"lib": [ | |
"es2022" | |
], | |
"declaration": true, | |
"strict": true, | |
"noImplicitAny": true, | |
"strictNullChecks": true, | |
"noImplicitThis": true, | |
"alwaysStrict": true, | |
"noUnusedLocals": false, | |
"noUnusedParameters": false, | |
"noImplicitReturns": true, | |
"noFallthroughCasesInSwitch": false, | |
"inlineSourceMap": true, | |
"inlineSources": true, | |
"experimentalDecorators": true, | |
"strictPropertyInitialization": false, | |
}, | |
"exclude": [ | |
"node_modules", | |
"cdk.out" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment