secst
Version:
SECST is a semantic, extensible, computational, styleable tagged markup language. You can use it to joyfully create compelling, interactive documents backed by HTML.
25 lines (23 loc) • 532 B
JavaScript
const path = require("path");
module.exports = {
entry: {
index:'./src/index.js',
runtime:'./src/runtime.js'
},
//watch: true,
output: {
filename: './[name].js',
path: __dirname,
chunkFormat: "module"
},
resolve: {
//extensions: ['.js', '.jsx', '.ts', '.tsx', '.json', '.css', '.scss'],
modules: ['./node_modules']
},
experiments: {
topLevelAwait: true
},
optimization: {
minimize: true
}
};