Skip to content
This repository was archived by the owner on Mar 6, 2025. It is now read-only.
/ tsconfigs Public archive

Shareable tsconfigs for UGRC projects

License

Notifications You must be signed in to change notification settings

agrc/tsconfigs

Repository files navigation

NOTE: This package was migrated to agrc/kitchen-sink

@ugrc/tsconfigs

Shareable tsconfigs for UGRC projects based on @total-typescripts/tsconfig.

Usage

Vite App

// tsconfig.json
{
  "files": [],
  "references": [
    {
      "path": "./tsconfig.browser.json"
    },
    {
      "path": "./tsconfig.vite-config.json"
    }
  ]
}

// tsconfig.browser.json
{
  "extends": "@ugrc/tsconfigs/browser",
  "include": ["src"]
}

// tsconfig.vite-config.json
{
  "extends": "@ugrc/tsconfigs/vite-config",
  "include": ["vite.config.ts"]
}