Skip to content

Commit

Permalink
feat: add tsconfig for apps
Browse files Browse the repository at this point in the history
  • Loading branch information
KillWolfVlad committed Jul 10, 2023
1 parent 73ddd52 commit c19febd
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,28 @@ Add to your `tsconfig.json`:

or

```json
{
"extends": "@byndyusoft/tsconfig/tsconfig.app.node16.json"
}
```

or

```json
{
"extends": "@byndyusoft/tsconfig/tsconfig.node18.json"
}
```

or

```json
{
"extends": "@byndyusoft/tsconfig/tsconfig.app.node18.json"
}
```

## Maintainers

- [@Byndyusoft/owners](https://github.com/orgs/Byndyusoft/teams/owners) <<[email protected]>>
Expand Down
9 changes: 9 additions & 0 deletions tsconfig.app.node16.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "./tsconfig.node16.json",
"compilerOptions": {
// Emit
"declaration": false,
"declarationMap": false,
"removeComments": true
}
}
9 changes: 9 additions & 0 deletions tsconfig.app.node18.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "./tsconfig.node18.json",
"compilerOptions": {
// Emit
"declaration": false,
"declarationMap": false,
"removeComments": true
}
}

0 comments on commit c19febd

Please sign in to comment.