vibe coding
Find a file
2025-04-01 12:56:30 +02:00
src Upadte 2025-04-01 12:56:30 +02:00
.gitignore Initial commit 2025-03-31 16:18:59 +02:00
package-lock.json Initial commit 2025-03-31 16:18:59 +02:00
package.json Initial commit 2025-03-31 16:18:59 +02:00
README.md Initial commit 2025-03-31 16:18:59 +02:00
tsconfig.json Initial commit 2025-03-31 16:18:59 +02:00
webpack.config.js Upadte 2025-04-01 12:56:30 +02:00

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

  1. Install dependencies:
npm install
  1. Start development server (with hot reloading):
npm run dev

This will open the application in your browser at http://localhost:9000

  1. Build for production:
npm run build

Project Structure

  • /src - Source files (TypeScript, HTML, CSS)
  • /dist - Compiled output (generated after build)
  • /.vscode - VSCode configurations
  • webpack.config.js - Webpack configuration
  • tsconfig.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:

  1. Run the development server: npm run dev
  2. Press F5 or select the debug icon in VSCode and choose a browser
  3. Set breakpoints in your TypeScript code