Closed Raynos closed 4 years ago
My project worked fine when using a single configuration aka jsconfig.json or tsconfig.json.
jsconfig.json
tsconfig.json
Once i used the extends feature and split it out into two files it didn't work.
extends
This was caused by ignoring the baseUrl I set and overwriting it incorrectly with a basePath.
baseUrl
basePath
git reset
git commit
npm run build
npm run lint
npm run fix
git add -A
.gitignore
npm run test
released in v2.14.1
v2.14.1
Thanks! After further debugging i've identified that this patch made the situation better and also worse. opened a new PR.
Fixes(if relevant):
My project worked fine when using a single configuration aka
jsconfig.json
ortsconfig.json
.Once i used the
extends
feature and split it out into two files it didn't work.This was caused by ignoring the
baseUrl
I set and overwriting it incorrectly with abasePath
.Checks
git reset
thengit commit
)npm run build
)npm run lint
to check,npm run fix
to fix)git add -A
or add rules at.gitignore
file)npm run test
to check)