├── .babelrc ├── .gitignore ├── README.md ├── netlify.toml ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.tsx ├── index.css ├── index.tsx ├── lambda │ ├── async-chuck-norris.ts │ └── hello.ts ├── logo.svg ├── react-app-env.d.ts └── setupProxy.js ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/lambda/async-chuck-norris.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/src/lambda/async-chuck-norris.ts -------------------------------------------------------------------------------- /src/lambda/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/src/lambda/hello.ts -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/src/setupProxy.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swyxio/create-react-app-lambda-typescript/HEAD/yarn.lock --------------------------------------------------------------------------------