vibe coding
src | ||
.gitignore | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json | ||
webpack.config.js |
TypeScript + HTML Project
A web project setup with:
- TypeScript configuration
- HTML and CSS integration
- Webpack for bundling and serving
- Development server with hot reloading
- VSCode configuration for debugging and development
Getting Started
- Install dependencies:
npm install
- Start development server (with hot reloading):
npm run dev
This will open the application in your browser at http://localhost:9000
- Build for production:
npm run build
Project Structure
/src
- Source files (TypeScript, HTML, CSS)/dist
- Compiled output (generated after build)/.vscode
- VSCode configurationswebpack.config.js
- Webpack configurationtsconfig.json
- TypeScript configuration
VSCode Integration
This project includes VSCode configurations for better development experience:
- Recommended Extensions: Open VSCode and check the "Recommended Extensions" section
- Debugging: Launch configurations for Chrome and Firefox
- Tasks: Run build and development server directly from VSCode
- Settings: Optimized editor settings for TypeScript and web development
To start debugging:
- Run the development server:
npm run dev
- Press F5 or select the debug icon in VSCode and choose a browser
- Set breakpoints in your TypeScript code