mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
Added new unit for materials
This commit is contained in:
parent
fb40fe9e00
commit
82ac52769f
3 changed files with 10 additions and 3 deletions
|
|
@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -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[]] = [
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"target": "es5",
|
||||
// "target": "ESNext",
|
||||
// "target": "es5",
|
||||
"target": "ESNext",
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue