Skip to content

Instantly share code, notes, and snippets.

@dreamorosi
Created April 19, 2024 08:13
Show Gist options
  • Save dreamorosi/8785f2a8ae9e868be65de1a44018b936 to your computer and use it in GitHub Desktop.
Save dreamorosi/8785f2a8ae9e868be65de1a44018b936 to your computer and use it in GitHub Desktop.
{
"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