-
Notifications
You must be signed in to change notification settings - Fork 1.1k
feat(build): enable incremental compilation #2928
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ | |
// FIXME(bajtos) LB4 is not compatible with this setting yet | ||
"strictPropertyInitialization": false, | ||
|
||
"incremental": true, | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. AFAIK, I think we will have to add I'll take a look. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIRC, it's resolved against the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Quoting from https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#configuration-inheritance-with-extends:
See also microsoft/TypeScript#29172 Quoting also from microsoft/TypeScript#29813
AFAICT, we are not setting There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This rule does not seem to be triggered in our current build setup, even when I change all |
||
"lib": ["es2018", "esnext.asynciterable"], | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
|
Uh oh!
There was an error while loading. Please reload this page.