31 lines
785 B
JavaScript
31 lines
785 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
context: path.resolve(__dirname),
|
|
mode: 'production',
|
|
entry: {
|
|
index: './preview-src/index.ts',
|
|
pre: './preview-src/pre.ts',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: ['.tsx', '.ts', '.js']
|
|
},
|
|
output: {
|
|
filename: '[name].js',
|
|
path: path.resolve(__dirname, 'media')
|
|
}
|
|
};
|