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

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 常用配置

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"
]
}
```