tsc-app 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# ts-app
|
|
2
|
+
|
|
3
|
+
A minimal and fast **TypeScript project generator** — spin up a ready-to-use TypeScript + Node.js project with a single command.
|
|
4
|
+
|
|
5
|
+
## ✨ Features
|
|
6
|
+
- 📦 Creates `package.json` with sensible defaults
|
|
7
|
+
- ⚙ Generates a clean `tsconfig.json`
|
|
8
|
+
- 📂 Sets up `src/` folder with a `main.ts` starter file
|
|
9
|
+
- 🏃 Adds `start`, `build`, and `serve` scripts
|
|
10
|
+
- ⚡ Supports **CommonJS** and **ES Module** formats with `-m` flag
|
|
11
|
+
- 🖥 Instantly ready to run via `npx` — no global install required
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 🚀 Quick Start
|
|
16
|
+
|
|
17
|
+
### 1. Create a new project
|
|
18
|
+
```bash
|
|
19
|
+
npx ts-app my-app
|