├── .babelrc ├── .editorconfig ├── .github └── workflows │ └── code-scanning-v3.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts ├── lambdas │ ├── aws-sts-caller-identity │ │ └── index.ts │ ├── func1 │ │ └── index.ts │ ├── func2 │ │ └── index.ts │ └── func3 │ │ └── index.ts ├── logging │ └── index.ts └── util │ ├── endsWith.js │ └── index.ts ├── test └── unit │ ├── lambda-aws-sts-caller-identity.test.ts │ ├── lambda-func1.test.ts │ ├── lambda-func2.test.ts │ ├── util.test.ts │ └── util │ └── invokeLambdaHandler.ts ├── tools └── bin │ └── zip-lambdas ├── tsconfig-src.json ├── tsconfig-test.json ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/code-scanning-v3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/.github/workflows/code-scanning-v3.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | work/ 4 | .nyc_output/ 5 | /package-lock.json 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lambdas/aws-sts-caller-identity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/src/lambdas/aws-sts-caller-identity/index.ts -------------------------------------------------------------------------------- /src/lambdas/func1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/src/lambdas/func1/index.ts -------------------------------------------------------------------------------- /src/lambdas/func2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/src/lambdas/func2/index.ts -------------------------------------------------------------------------------- /src/lambdas/func3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/src/lambdas/func3/index.ts -------------------------------------------------------------------------------- /src/logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/src/logging/index.ts -------------------------------------------------------------------------------- /src/util/endsWith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/src/util/endsWith.js -------------------------------------------------------------------------------- /src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/src/util/index.ts -------------------------------------------------------------------------------- /test/unit/lambda-aws-sts-caller-identity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/test/unit/lambda-aws-sts-caller-identity.test.ts -------------------------------------------------------------------------------- /test/unit/lambda-func1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/test/unit/lambda-func1.test.ts -------------------------------------------------------------------------------- /test/unit/lambda-func2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/test/unit/lambda-func2.test.ts -------------------------------------------------------------------------------- /test/unit/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/test/unit/util.test.ts -------------------------------------------------------------------------------- /test/unit/util/invokeLambdaHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/test/unit/util/invokeLambdaHandler.ts -------------------------------------------------------------------------------- /tools/bin/zip-lambdas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/tools/bin/zip-lambdas -------------------------------------------------------------------------------- /tsconfig-src.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/tsconfig-src.json -------------------------------------------------------------------------------- /tsconfig-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/tsconfig-test.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint-config-semistandard" 3 | } 4 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeomic/lambda-typescript-webpack-babel-starter/HEAD/yarn.lock --------------------------------------------------------------------------------