29 lines
589 B
JavaScript
29 lines
589 B
JavaScript
/*
|
|
* Copyright (C) Schweizerische Bundesbahnen SBB, 2019.
|
|
*/
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: [
|
|
'./src/index.ts',
|
|
'./node_modules/jquery/dist/jquery.js'
|
|
],
|
|
devtool: "inline-source-map",
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: ['.tsx', '.ts', '.js']
|
|
},
|
|
output: {
|
|
filename: 'bundle.js',
|
|
path: path.resolve(__dirname, 'dist')
|
|
}
|
|
};
|