mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
Revert "extension webpack: do not copy .ts files as resources"
This reverts commit ab1aeb6b73.
This commit is contained in:
@@ -72,7 +72,7 @@ function withNodeDefaults(/**@type WebpackConfig*/extConfig) {
|
||||
// @ts-expect-error
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
{ from: 'src', to: '.', globOptions: { ignore: ['**/test/**', '**/*.ts'] } }
|
||||
{ from: 'src', to: '.', globOptions: { ignore: ['**/test/**', '*.ts'] } }
|
||||
]
|
||||
}),
|
||||
new NLSBundlePlugin(id)
|
||||
@@ -131,7 +131,7 @@ function withBrowserDefaults(/**@type WebpackConfig*/extConfig) {
|
||||
// @ts-expect-error
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
{ from: 'src', to: '.', globOptions: { ignore: ['**/test/**', '**/*.ts'] } }
|
||||
{ from: 'src', to: '.', globOptions: { ignore: ['**/test/**', '*.ts'] } }
|
||||
]
|
||||
}),
|
||||
new DefinePlugin({ WEBWORKER: JSON.stringify(true) })
|
||||
|
||||
Reference in New Issue
Block a user