1
0

update three-vrm-3

This commit is contained in:
2024-08-04 17:56:35 +09:00
parent 2fb62a68ac
commit f5fa7a9a0c
58 changed files with 12078 additions and 6 deletions

26
min-ts/webpack.config.js Normal file
View File

@ -0,0 +1,26 @@
const path = require('path');
module.exports = {
mode: 'development',
entry: './src/index.ts',
module: {
rules: [
{
test: /\.ts$/,
loader: 'ts-loader'
}
]
},
resolve: {
extensions: ['.ts', '.js']
},
output: {
filename: 'main.js',
path: path.join(__dirname, "dist")
},
devServer: {
static: {
directory: path.join(__dirname, "dist"),
}
}
}