@ingridab/tsconfig
v1.0.1
Published
Ingrid AB common TypeScript config
Readme
Ingrid AB tsconfig
This is TypeScript configuration used in Ingrid AB projects. To use it you need to install it first:
npm install @ingridab/tsconfigThen 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/*"]
}
}
}