-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Bobbrow/webpack #3411
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
Bobbrow/webpack #3411
Conversation
|
Looks like this breaks the Azure Pipeline build...even though building works locally. Error: Cannot find module './out/tools/GenerateOptionsSchema' |
WardenGnaw
left a comment
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.
I wouldn't webpack src/tools, since it is not used for the released VsCode extension.
I would add another agent build for testing webpacked builds and keep our normal just tsc builds since we do not want webpacking for regular dev workflow.
Add Extension/dist/* to .gitignore
7208ae9 to
66dd769
Compare
|
When the Config UI goes in, we'll need to update this to make sure all the assets are in the right place. |
Webpack will be doing all the compilation. However we need to tsc specific support files in order for our checks and tests to work. Added webpack watch Fix tslint Debugger intergration tests are broken and will not work with webpack. Fix .vscodeignore list to ignore out since now everything should be published to dist.
support.ts will not be webpacked since it is needed for settings.html. tscCompileList.txt will be used for typescript files that need to be individually consumed as a .js file instead of being webpacked. Updated .vscode ignore to remove unnecessary files.
66dd769 to
a7f6d9c
Compare
|
Linking #3213 as it is fixed with this merge. |
Debugging doesn't work. Something wrong with the source mapping I guess.