Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/shian15810/typesafeconfig

TypeScript base configuration (tsconfig) to extend from with emphasis on type safety.
https://github.com/shian15810/typesafeconfig

base config configuration extends safe tsconfig type typescript

Last synced: 18 days ago
JSON representation

TypeScript base configuration (tsconfig) to extend from with emphasis on type safety.

Awesome Lists containing this project

README

        

# typesafeconfig

TypeScript base configuration (tsconfig) to extend from with emphasis on type safety.

## Installation

```shell
npm install --save-dev typesafeconfig
```

## Usage

In your `tsconfig.json`:

```jsonc
{
"extends": "typesafeconfig/tsconfig.json",
"compilerOptions": {
// ...
}
}
```

Or:

```jsonc
{
"extends": "typesafeconfig/tsconfig.strict.json",
"compilerOptions": {
// ...
}
}
```

## See Also

- [`type-expand`](https://github.com/shian15810/type-expand)