Setting the name property inside output does not affect the output file name
E.g.
/// spack.config.js
const { config } = require("@swc/core/spack");
module.exports = config({
entry: __dirname + "/src/index.ts",
output: {
path: __dirname + "/dist/scripts",
name: "content.js",
},
});
