Move tsconfig configurations to tsconfig.base.json and extend tsconfig.json
Add build folder and .DS_Store to .gitignore
Why is this needed?
CRA doesn't support path alias out of the box and tries to override the default tsconfig.json. Therefore, to be compliant with that behaviour, we extend default tsconfig.json from tsconfig.base.json so our tsconfig isn't overridden.
This pull request proposes the following changes:
tsconfig.base.json
and extendtsconfig.json
build
folder and.DS_Store
to.gitignore
Why is this needed?
CRA doesn't support path alias out of the box and tries to override the default
tsconfig.json
. Therefore, to be compliant with that behaviour, we extend defaulttsconfig.json
fromtsconfig.base.json
so our tsconfig isn't overridden.