# create-tsc **Repository Path**: nodets/create-tsc ## Basic Information - **Project Name**: create-tsc - **Description**: create-tsc - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-07 - **Last Updated**: 2025-09-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # crate-tsc A simple CLI tool to create TypeScript projects with zero configuration. ## Installation You don't need to install this package globally. Use it directly with npm/npx: ```bash npm create tsc my-project # or npx crate-tsc my-project ``` ## Usage 1. Run the command: ```bash npm create tsc ``` 2. Follow the interactive prompts to configure your project: - Project name - Description - Author - License - TypeScript compiler options - Additional tools (ts-node, etc.) 3. Confirm your choices and the tool will create a fully configured TypeScript project. ## What's Included When you create a project with `crate-tsc`, you'll get: - A ready-to-use [package.json](file:///Users/xianhao/jvy/nodejs/create-tsc/package.json) with TypeScript build scripts - Preconfigured [tsconfig.json](file:///Users/xianhao/jvy/nodejs/create-tsc/templates/tsconfig.json) based on your preferences - Basic project structure with `src/` and `dist/` directories - Sample `index.ts` file to get you started - Optional `ts-node` setup for development ## Project Structure ``` my-project/ ├── package.json ├── tsconfig.json ├── src/ │ └── index.ts └── dist/ ``` ## Available Scripts After creating your project, you can use these npm scripts: - `npm run build` - Compile TypeScript to JavaScript - `npm start` - Run the compiled JavaScript - `npm run dev` - Run TypeScript directly with ts-node (if selected) ## Requirements - Node.js 12.0.0 or higher ## License MIT ## Contributing Contributions are welcome! Please feel free to submit a Pull Request.