@e-trias/woonplan 1.0.42 → 1.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
- "types": "index.d.ts",
5
- "version": "1.0.42",
6
- "main": "index.d.ts",
4
+ "types": "types.d.ts",
5
+ "version": "1.0.45",
7
6
  "scripts": {
8
- "test": "echo \"Error: no test specified\" && exit 1"
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "build": "tsc -p tsconfig.json"
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
@@ -19,6 +19,7 @@
19
19
  "homepage": "https://github.com/e-line-websolutions/woonplan-types#readme",
20
20
  "description": "",
21
21
  "dependencies": {
22
- "@types/uuidv4": "^5.0.0"
22
+ "@types/uuidv4": "^5.0.0",
23
+ "typescript": "^4.5.5"
23
24
  }
24
25
  }
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es5",
4
+ "module": "commonjs",
5
+ "declaration": true,
6
+ "outDir": "./dist",
7
+ "strict": true
8
+ }
9
+ }
@@ -475,6 +475,7 @@ export interface IFloor extends IHouseobject{
475
475
  woodandbeamsneedsreplacing ?: string
476
476
  flatbottom ?: boolean
477
477
  crawlspacesinfloor ?: ICrawlspaceinfloor[]
478
+ basementhasceiling ?: boolean
478
479
  }
479
480
 
480
481