45 lines
938 B
JavaScript
45 lines
938 B
JavaScript
const path = require('path');
|
|
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
|
|
module.exports = [{
|
|
entry: './src/App.ts',
|
|
output: {
|
|
filename: './js/main.js',
|
|
path: path.resolve(__dirname, 'build')
|
|
},
|
|
performance: {
|
|
hints: false
|
|
},
|
|
devtool: 'inline-source-map',
|
|
plugins: [
|
|
new CleanWebpackPlugin(),
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
template: './src/index.html',
|
|
minify: false
|
|
}),
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{from: './src/textures', to: path.resolve(__dirname, 'build/textures')}
|
|
]
|
|
}),
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts|.tsx$/,
|
|
loader: 'ts-loader',
|
|
options: {configFile: 'tsconfig.json'},
|
|
exclude: /node_modules/
|
|
}, {
|
|
test: /\.(frag|vert)$/i,
|
|
use: 'raw-loader'
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.js']
|
|
}
|
|
}];
|