/altv-typescript-starter

An alt:V TypeScript starter project

Primary LanguageTypeScript

alt:V TypeScript Starter

The goal of this project is to provide a minimal base for alt:V projects. This project aims to minimize boilerplate code, build time and finally valuable development time.

Features

  • 💆 Zero configuration (thanks to Parcel)
  • 👌 Typings included (client, server, natives, webview)
  • âš¡ The fastest bundle times (multi-core compilation, filesystem cache and more)
  • 📦 Out of the box support for HTML and CSS
  • ✨ Built-in Support for CSS pre-processors (LESS, Stylus, or install SASS)

Getting started

Getting started with this starter project couldn't be easier. It consists of a single step:

# Yarn
yarn install

# NPM
npm install

Build your resource

Building your resource also requires only a single command:

# Yarn
yarn build

# NPM
npm run build

Installing SASS (SCSS support)

To add support for SASS/SCSS, you simply have to install the SASS package:

yarn add -D sass

Parcel will take care of the rest. That means: No configuration required 🎉

ToDo