├── .gitignore ├── LICENSE ├── app.ts ├── package.json ├── routes └── root.ts ├── server.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/type-safe-fastify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/type-safe-fastify/HEAD/LICENSE -------------------------------------------------------------------------------- /app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/type-safe-fastify/HEAD/app.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/type-safe-fastify/HEAD/package.json -------------------------------------------------------------------------------- /routes/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/type-safe-fastify/HEAD/routes/root.ts -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/type-safe-fastify/HEAD/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcollina/type-safe-fastify/HEAD/tsconfig.json --------------------------------------------------------------------------------