add TorqueScript transpiler and runtime

This commit is contained in:
Brian Beck 2025-11-30 11:44:47 -08:00
parent c8391a1056
commit 7d10fb7dee
49 changed files with 12324 additions and 2075 deletions

View file

@ -4,4 +4,18 @@ module.exports = {
basePath: "/t2-mapper",
assetPrefix: "/t2-mapper/",
trailingSlash: true,
async headers() {
return [
{
// TorqueScript files should be served as text
source: "/:path*.cs",
headers: [
{
key: "Content-Type",
value: "text/plain; charset=utf-8",
},
],
},
];
},
};