https://github.com/directus/tsconfig
TSConfig files used in Directus projects.
https://github.com/directus/tsconfig
Last synced: 4 months ago
JSON representation
TSConfig files used in Directus projects.
- Host: GitHub
- URL: https://github.com/directus/tsconfig
- Owner: directus
- License: mit
- Created: 2024-08-13T09:30:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-10T20:33:10.000Z (about 1 year ago)
- Last Synced: 2025-01-17T00:35:22.539Z (12 months ago)
- Language: JavaScript
- Homepage: https://directus.io
- Size: 35.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Directus TSConfig
Shared TSConfig files used by projects in the Directus ecosystem.
The following configs are available:
- [`node22`](./configs/node22/tsconfig.json) - Config for Node.js 22 modules
- [`vue3`](./configs/vue3/tsconfig.json) - Config for Vue.js 3 modules
- [`base`](./configs/base/tsconfig.json) - Set of basic rules (included in all of the configs above)
## Usage
```
pnpm add -D @directus/tsconfig
```
To use one of the shared config, extend the local `tsconfig.json` from it:
```json
{
"extends": "@directus/tsconfig/node22"
}
```
## Additional Resources
- [Directus Website](https://directus.io)
- [Directus GitHub Repository](https://github.com/directus/directus)