32 lines
597 B
JavaScript
32 lines
597 B
JavaScript
const path = require('path');
|
|
|
|
module.exports =
|
|
{
|
|
mode: "development",
|
|
entry:
|
|
{
|
|
exampleWithCSV: "./src/exampleWithCSV.ts",
|
|
exampleWithHTML: "./src/exampleWithHTML.ts",
|
|
exampleWithJSON: "./src/exampleWithJSON.ts",
|
|
},
|
|
output:
|
|
{
|
|
path: path.resolve(__dirname, "public"),
|
|
filename: "JS/[name].app.js"
|
|
},
|
|
resolve: {
|
|
extensions: ['.tsx', '.ts', '.js'],
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
devServer: {
|
|
static: path.join(__dirname, "public")
|
|
},
|
|
}; |