Getting Started Installation

Installation

How to setup uilabs in your project.

Frameworks

Not use TypeScript

To opt-out of TypeScript, you can use the tsx flag in your uilabs.config.json file.

{
  // ...
  "tsx": false,
  // ...
}

To configure import aliases, you can use the following jsconfig.json:

{
  "compilerOptions": {
    "paths": {
      "@/*": ["./*"]
    }
  }
}