├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── prettier.config.js ├── src ├── client │ ├── api.ts │ ├── index.html │ └── index.ts ├── server │ └── index.ts └── types │ └── api.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/client/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/src/client/api.ts -------------------------------------------------------------------------------- /src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/src/client/index.html -------------------------------------------------------------------------------- /src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/src/client/index.ts -------------------------------------------------------------------------------- /src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/src/server/index.ts -------------------------------------------------------------------------------- /src/types/api.ts: -------------------------------------------------------------------------------- 1 | export interface Health { 2 | message: string 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takefumi-yoshii/ts-express-hands-on/HEAD/yarn.lock --------------------------------------------------------------------------------