https://github.com/yuan66-hub/ts-config
tsconfig.json公共配置,vue-tscofig常用配置,node-tsconfig 常用配置
https://github.com/yuan66-hub/ts-config
Last synced: 3 months ago
JSON representation
tsconfig.json公共配置,vue-tscofig常用配置,node-tsconfig 常用配置
- Host: GitHub
- URL: https://github.com/yuan66-hub/ts-config
- Owner: yuan66-hub
- Created: 2024-06-07T07:29:31.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-06-07T08:23:18.000Z (12 months ago)
- Last Synced: 2025-02-21T00:49:18.241Z (3 months ago)
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## tsconfig
```json
{
//...
"extends":[
"@yuanjianming/ts-config/base.json"
]
}
```## vue app tsconfig
```json
{
//...
"extends":[
"@yuanjianming/ts-config/vue-app.json"
]
}
```## react app tsconfig
```json
{
//...
"extends":[
"@yuanjianming/ts-config/react-app.json"
]
}
```## node server tsconfig
```json
{
//...
"extends":[
"@yuanjianming/ts-config/node-server.json"
]
}
```## node tsconfig
```json
{
//...
"extends":[
"@yuanjianming/ts-config/node.json"
]
}
```