https://github.com/tommy-mitchell/tsconfig
My personal TypeScript config.
https://github.com/tommy-mitchell/tsconfig
Last synced: 2 months ago
JSON representation
My personal TypeScript config.
- Host: GitHub
- URL: https://github.com/tommy-mitchell/tsconfig
- Owner: tommy-mitchell
- License: mit
- Created: 2023-03-19T04:03:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T04:59:18.000Z (over 1 year ago)
- Last Synced: 2024-10-29T10:18:24.422Z (7 months ago)
- Homepage: https://npm.im/@tommy-mitchell/tsconfig
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# @tommy-mitchell/tsconfig
Personal TypeScript config.
## Install
```sh
npm install --save-dev @tommy-mitchell/tsconfig
```Other Package Managers
```sh
yarn add --dev @tommy-mitchell/tsconfig
```## Usage
```json5
{
"extends": "@tommy-mitchell/tsconfig",
"compilerOptions": {
"outDir": "dist",
},
}
```If using with a bundler, set the following options to prevent type resolution issues:
```json5
{
"compilerOptions": {
"declaration": false,
"noEmit": false,
},
}
```