trypost/cdk/tsconfig.json
vickytechkey c899d7db13
All checks were successful
Setup EC2 Tools / setup-server (push) Successful in 2m40s
chore: add missing AWS CDK and project dependencies to node_modules
2026-09-10 22:50:11 +05:30

26 lines
687 B
JSON

{
"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,
"skipLibCheck": true,
"esModuleInterop": true
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "cdk.out"]
}