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
- Host: GitHub
- URL: https://github.com/agrc/tsconfigs
- Owner: agrc
- License: mit
- Created: 2024-12-12T20:35:51.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-01-22T02:13:42.000Z (10 months ago)
- Last Synced: 2025-01-22T03:21:57.463Z (10 months ago)
- Topics: government-app, terraform-managed
- Language: JavaScript
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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"]
}
```