-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andreas Richter
committed
Jan 17, 2025
1 parent
cabeb4f
commit be5852d
Showing
3 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
.../framework-integ/test/aws-lambda-nodejs/test/integ-handlers/whitespace path/ts-handler.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { mult } from '../util'; | ||
|
||
export async function handler(): Promise<void> { | ||
console.log(mult(3, 4)); // eslint-disable-line no-console | ||
} |
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
69 changes: 69 additions & 0 deletions
69
...aws-cdk-testing/framework-integ/test/aws-lambda-nodejs/test/whitespace path/tsconfig.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"compilerOptions": { | ||
"declarationMap": false, | ||
"inlineSourceMap": true, | ||
"inlineSources": true, | ||
"alwaysStrict": true, | ||
"declaration": true, | ||
"experimentalDecorators": true, | ||
"incremental": true, | ||
"lib": [ | ||
"es2020", | ||
"dom" | ||
], | ||
"module": "CommonJS", | ||
"newLine": "lf", | ||
"noEmitOnError": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitAny": true, | ||
"noImplicitReturns": true, | ||
"noImplicitThis": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"strict": true, | ||
"strictNullChecks": true, | ||
"strictPropertyInitialization": true, | ||
"stripInternal": false, | ||
"target": "ES2020", | ||
"composite": true, | ||
"tsBuildInfoFile": "tsconfig.tsbuildinfo" | ||
}, | ||
"include": [ | ||
"**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
], | ||
"references": [ | ||
{ | ||
"path": "../aws-lambda" | ||
}, | ||
{ | ||
"path": "../core" | ||
}, | ||
{ | ||
"path": "../assertions" | ||
}, | ||
{ | ||
"path": "../aws-ec2" | ||
}, | ||
{ | ||
"path": "../../../tools/@aws-cdk/cdk-build-tools" | ||
}, | ||
{ | ||
"path": "../integ-runner" | ||
}, | ||
{ | ||
"path": "../integ-tests" | ||
}, | ||
{ | ||
"path": "../../../tools/@aws-cdk/pkglint" | ||
}, | ||
{ | ||
"path": "../triggers" | ||
} | ||
], | ||
"_generated_by_jsii_": "Generated by jsii - safe to delete, and ideally should be in .gitignore" | ||
} |