From e9a61f17161bda962a0346d2d8e338cef407a434 Mon Sep 17 00:00:00 2001 From: apetitco Date: Thu, 4 Dec 2025 14:17:33 +0100 Subject: [PATCH] (misc): Initial commit --- src/tic-tac-toe/README.md | 6 ++++++ src/tic-tac-toe/package.json | 17 +++++++++++++++++ src/tic-tac-toe/tsconfig.json | 5 +++++ 3 files changed, 28 insertions(+) create mode 100644 src/tic-tac-toe/README.md create mode 100644 src/tic-tac-toe/package.json create mode 100644 src/tic-tac-toe/tsconfig.json diff --git a/src/tic-tac-toe/README.md b/src/tic-tac-toe/README.md new file mode 100644 index 0000000..bdf6589 --- /dev/null +++ b/src/tic-tac-toe/README.md @@ -0,0 +1,6 @@ +# Anatomy of a microservice + +# Backend + +# Frontend + diff --git a/src/tic-tac-toe/package.json b/src/tic-tac-toe/package.json new file mode 100644 index 0000000..2ae85bd --- /dev/null +++ b/src/tic-tac-toe/package.json @@ -0,0 +1,17 @@ +{ + "name": "tic-tac-toe", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "npm run build && node dist/run.js", + "build": "vite build", + "build:prod": "vite build --outDir=/dist --minify=true --sourcemap=false", + "build:openapi": "VITE_ENTRYPOINT=src/openapi.ts vite build && node dist/openapi.cjs >openapi.json", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "packageManager": "pnpm@10.24.0" +} diff --git a/src/tic-tac-toe/tsconfig.json b/src/tic-tac-toe/tsconfig.json new file mode 100644 index 0000000..cd65905 --- /dev/null +++ b/src/tic-tac-toe/tsconfig.json @@ -0,0 +1,5 @@ +{ + "extends": "../tsconfig.base.json", + "compilerOptions": {}, + "include": ["src/**/*.ts"] +} \ No newline at end of file