https://github.com/connorjs/tsconfig
@connorjs’s tsconfig
https://github.com/connorjs/tsconfig
tsconfig
Last synced: 3 months ago
JSON representation
@connorjs’s tsconfig
- Host: GitHub
- URL: https://github.com/connorjs/tsconfig
- Owner: connorjs
- License: mit
- Created: 2024-07-24T04:20:02.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-03T15:17:43.000Z (10 months ago)
- Last Synced: 2025-02-14T20:57:34.455Z (3 months ago)
- Topics: tsconfig
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @connorjs/tsconfig
@connorjs’s tsconfig files.
## Available configurations
- `app`: Application-specific configuration (disables emit).
- `base`: Base configuration file that sets strict settings.## Usage
1. Install the package.
```shell
npm i -D @connorjs/tsconfig
```2. Extend it in your `tsconfig.json`.
An example follows.```json
{
"extends": "@connorjs/tsconfig/app/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "./artifacts/tsc"
},
"include": ["src"]
}
```