Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 597 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 597 Bytes

@lichtblick/tsconfig

npm version

Base tsconfig for lichtblick projects.

To use, run npm i --save-dev @lichtblick/tsconfig, then extend your tsconfig.json like so:

{
  "extends": "@lichtblick/tsconfig/base",
  "include": ["./src/**/*"],
  "compilerOptions": {
    "rootDir": "./src",
    "outDir": "./dist"
  }
}

License

MIT License

Releasing

tag=$(npm version minor) && echo "$tag"
git push && git push origin "$tag"