https://github.com/winjs-dev/tsconfig
base tsconfig for projects
https://github.com/winjs-dev/tsconfig
Last synced: 4 months ago
JSON representation
base tsconfig for projects
- Host: GitHub
- URL: https://github.com/winjs-dev/tsconfig
- Owner: winjs-dev
- Created: 2022-11-07T01:26:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-07T10:57:47.000Z (over 3 years ago)
- Last Synced: 2024-09-04T15:18:45.466Z (almost 2 years ago)
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @winner-fed/tsconfig
TSConfigs for projects to extend. Based on [@vue/tsconfig](https://github.com/vuejs/tsconfig).
Requires TypeScript >= 4.5.
Install:
```
npm add -D @winner-fed/tsconfig
```
Add one of the available configurations to your tsconfig.json:
The base configuration (runtime-agnostic):
```
"extends": "@vue/tsconfig/tsconfig.json"
```
Configuration for Browser environment:
```
"extends": "@vue/tsconfig/tsconfig.web.json"
```
Configuration for Node environment:
```
"extends": "@vue/tsconfig/tsconfig.node.json"
```