2021-08-05 11:05:05 +02:00
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
module.exports =
|
|
|
|
{
|
2021-11-09 16:45:01 +01:00
|
|
|
mode: "development",
|
2021-08-05 11:05:05 +02:00
|
|
|
entry:
|
|
|
|
{
|
2021-11-04 15:50:40 +01:00
|
|
|
exampleWithCSV: "./src/demo/exampleWithCSV.ts",
|
|
|
|
exampleWithHTML: "./src/demo/exampleWithHTML.ts",
|
|
|
|
exampleWithJSON: "./src/demo/exampleWithJSON.ts",
|
|
|
|
exampleWithUserFile: "./src/demo/exampleWithUserFile.ts"
|
2021-08-05 11:05:05 +02:00
|
|
|
},
|
|
|
|
output:
|
|
|
|
{
|
2021-09-03 17:33:00 +02:00
|
|
|
path: path.resolve(__dirname, "public"),
|
|
|
|
filename: "JS/[name].app.js"
|
2021-08-05 11:05:05 +02:00
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
extensions: ['.tsx', '.ts', '.js'],
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.tsx?$/,
|
|
|
|
use: 'ts-loader',
|
|
|
|
exclude: /node_modules/,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
devServer: {
|
2021-09-03 17:33:00 +02:00
|
|
|
static: path.join(__dirname, "public")
|
2021-08-05 11:05:05 +02:00
|
|
|
},
|
|
|
|
};
|