wowok
Version:
Create, collaborate, and transact on your own terms with the AI-driven web3 collaboration protocol.
24 lines (22 loc) • 412 B
JavaScript
const path = require('path');
module.exports = {
entry: './src/index.ts',
resolve: {
extensions: ['.js', '.ts', '.json'],
alias: {
}
},
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'umd',
globalObject: 'this'
},
module: {
rules: [{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/
}]
}
};