-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[next] fix: Adjust tsconfig and eslintrc for tests #5569
Conversation
* Fixes `rootdir` in invalid place in tsconfig. * Fixes wrong location of eslintrc Signed-off-by: Ferdinand Thiessen <[email protected]>
@@ -12,11 +12,13 @@ | |||
"strict": true, | |||
"noImplicitAny": false, | |||
"outDir": "./dist", | |||
"rootDir": "./src", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe make it just the root to keep structure?
"rootDir": "./src", | |
"rootDir": ".", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The the output will be dist/src/...
instead of dist/...
And would also include files in the output that are only for development.
So setting root to our sources only.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it needed only for next
?
Yes only on next this is an issue |
☑️ Resolves
rootdir
in invalid place in tsconfig.🏁 Checklist