mirror of
https://github.com/danog/CodiceFiscaleJS.git
synced 2024-12-02 09:27:51 +01:00
14 lines
257 B
JavaScript
14 lines
257 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: {
|
|
'codice.fiscale': './codice.fiscale.js'
|
|
},
|
|
output: {
|
|
library: 'CodiceFiscale',
|
|
libraryTarget: 'window',
|
|
filename: '[name].js',
|
|
path: path.resolve(__dirname, 'dist')
|
|
}
|
|
};
|