Skip to content
/ tsconfigs Public

Shareable tsconfigs for UGRC projects

License

Notifications You must be signed in to change notification settings

agrc/tsconfigs

Repository files navigation

@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"]
}