Skip to Content
documentationIntroduction

Introduction

The reccomended way to run aspectra is using tsx.

Installation

npm i aspectra

Then, add the following to your tsconfig.json:

{
  "compilerOptions": {
    "strict": true,
    "target": "es2022", // or higher
    "experimentalDecorators": false // or remove this line
  }
}
Last updated on