https://github.com/progfay/tsconfig
Base tsconfig.json for @progfay's personal use
https://github.com/progfay/tsconfig
tsconfig
Last synced: 13 days ago
JSON representation
Base tsconfig.json for @progfay's personal use
- Host: GitHub
- URL: https://github.com/progfay/tsconfig
- Owner: progfay
- License: mit
- Created: 2021-06-05T08:13:57.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-05T09:28:32.000Z (about 4 years ago)
- Last Synced: 2025-03-18T05:40:44.298Z (3 months ago)
- Topics: tsconfig
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @progfay/tsconfig
## Installation
```sh
npm install --save-dev @tsconfig/node16
```## Setup
```json
{
"extends": "@progfay/tsconfig/tsconfig.json",/* Optional */
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./lib"
},
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"],
}
```