29 lines
541 B
JavaScript
29 lines
541 B
JavaScript
|
/*
|
||
|
* Copyright (C) Schweizerische Bundesbahnen SBB, 2019.
|
||
|
*/
|
||
|
|
||
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: [
|
||
|
'./src/index.ts'
|
||
|
],
|
||
|
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')
|
||
|
}
|
||
|
};
|