Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoyer, Dennis committed Aug 7, 2023
0 parents commit 4f35918
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# @dennishoyer/prettier-tsconfig

## Install

```sh
pnpm install -D @dennishoyer/tsconfig
```

## Usage

`tsconfig.json`

```json
{
"extends": "@dennishoyer/tsconfig",
"compilerOptions": {
"outDir": "dist"
}
}
```
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "@dennishoyer/tsconfig",
"version": "0.0.2",
"description": "tsconfig",
"main": "tsconfig.json",
"files": [
"tsconfig.json"
],
"license": "MIT",
"author": {
"name": "Dennis Hoyer",
"email": "[email protected]",
"url": "https://dh19.de"
},
"keywords": [
"tsconfig"
],
"repository": {
"type": "git",
"url": "https://github.com/dennishoyer/tsconfig"
},
"homepage": "https://github.com/dennishoyer/tsconfig",
"scripts": {
"publish": "npm publish --registry https://npm.dh19.de/"
}
}
26 changes: 26 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"target": "es2015",
"module": "esnext",
"lib": [
"es2020",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
},
"exclude": [
"node_modules",
"tmp"
]
}

0 comments on commit 4f35918

Please sign in to comment.