-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
fix: bump project to vite #1137
base: main
Are you sure you want to change the base?
Conversation
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.
Overall this looks very good, i only have some leftover questions i like to understand regarding your typescript config files :)
Thanks a lot!
"noEmit": true, | ||
"jsx": "react-jsx", | ||
|
||
/* Linting */ |
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.
All linting rules are already specified in the tsconfig.node.json
we should not duplicate them here, right?
"module": "ESNext", | ||
"skipLibCheck": true, | ||
|
||
/* Bundler mode */ |
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.
All bundler rules, except the jsx
setting, are already specified in the tsconfig.node.json
we should not duplicate them here, right?
{ | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", | ||
"target": "ES2020", |
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.
shouldn't we adhere to the setting in tsconfig.node.json
? This also applies to
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
Or was there a particular reason?
@PacoVK I’ve had to open a new PR to resolve the conflicts.
Thank you!