Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 496 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 496 Bytes

Ingrid AB tsconfig

This is TypeScript configuration used in Ingrid AB projects. To use it you need to install it first:

npm install @ingridab/tsconfig

Then create tsconfig.json file inside your project with following contents:

{
  "extends": "@ingridab/tsconfig"
}

And your are ready to go 🚀.

If you need to override some settings:

{
  "extends": "@ingridab/tsconfig",
  "compilerOptions": {
    "paths": {
      "~src/*": ["src/*"]
    }
  }
}