Masuksini-Real-Estate/public/assets/pwa/excellentexport/webpack.config.js

29 lines
663 B
JavaScript
Raw Permalink Normal View History

2024-09-07 01:16:49 +00:00
const path = require('path');
module.exports = {
entry: './src/excellentexport.ts',
// devtool: "inline-source-map",
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'excellentexport.js',
library: 'ExcellentExport',
libraryTarget: 'umd',
libraryExport: 'default',
auxiliaryComment: 'ExcellentExport.js'
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /(node_modules)/,
use: {
loader: 'ts-loader'
}
}
]
},
performance: {
hints: false
}
};