Added new unit for materials

This commit is contained in:
Khalim Conn-Kowlessar 2023-10-18 16:41:25 +11:00
parent fb40fe9e00
commit 82ac52769f
3 changed files with 10 additions and 3 deletions

View file

@ -281,6 +281,13 @@
"when": 1697607380730,
"tag": "0039_old_nuke",
"breakpoints": true
},
{
"idx": 40,
"version": "5",
"when": 1697607635913,
"tag": "0040_dashing_giant_man",
"breakpoints": true
}
]
}

View file

@ -22,7 +22,7 @@ export const materialTypeEnum = pgEnum("type", MaterialType);
export const DepthUnit: [string, ...string[]] = ["mm"];
export const depthUnitEnum = pgEnum("depth_unit", DepthUnit);
export const CostUnit: [string, ...string[]] = ["gbp_sq_meter"];
export const CostUnit: [string, ...string[]] = ["gbp_sq_meter", "gbp_per_unit"];
export const costUnitEnum = pgEnum("cost_unit", CostUnit);
export const RValueUnit: [string, ...string[]] = [

View file

@ -1,8 +1,8 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es5",
// "target": "ESNext",
// "target": "es5",
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,