An open API service indexing awesome lists of open source software.

https://github.com/agrc/tsconfigs

Shareable tsconfigs for UGRC projects
https://github.com/agrc/tsconfigs

government-app terraform-managed

Last synced: about 1 month ago
JSON representation

Shareable tsconfigs for UGRC projects

Awesome Lists containing this project

README

          

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

# @ugrc/tsconfigs

Shareable tsconfigs for UGRC projects based on [`@total-typescripts/tsconfig`](https://github.com/total-typescript/tsconfig).

## Usage

### Vite App

```json
// 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"]
}
```