🎨 style: remove leftover template comments

This commit is contained in:
2026-08-13 02:32:16 +07:00
parent fca139dff9
commit 5a290fcfa5
11 changed files with 20 additions and 102 deletions
+2 -14
View File
@@ -1,15 +1,3 @@
# backend
# @minikura/backend
To install dependencies:
```bash
bun install
```
To run:
```bash
bun run index.ts
```
This project was created using `bun init` in bun v1.1.28. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
Elysia API. From the repo root: `bun run dev`.
-7
View File
@@ -1,25 +1,18 @@
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
+2 -14
View File
@@ -1,15 +1,3 @@
# web
# @minikura/web
To install dependencies:
```bash
bun install
```
To run:
```bash
bun run index.ts
```
This project was created using `bun init` in bun v1.1.28. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
Next.js dashboard. From the repo root: `bun run web` or `bun run dev`.