@aristobyte-ui/typescript-config 1.0.5 → 1.0.7

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @aristobyte-ui/typescript-config
1
+ # @aristobyte/typescript-config
2
2
 
3
3
  Centralized TypeScript configuration package for AristoByte monorepo.
4
4
 
@@ -31,7 +31,7 @@ In your project `tsconfig.json`, extend the relevant config depending on the con
31
31
 
32
32
  ```json
33
33
  {
34
- "extends": "@aristobyte-ui/typescript-config/tsconfig.base.json"
34
+ "extends": "@aristobyte/typescript-config/tsconfig.base.json"
35
35
  }
36
36
  ```
37
37
 
@@ -39,7 +39,7 @@ or
39
39
 
40
40
  ```json
41
41
  {
42
- "extends": "@aristobyte-ui/typescript-config/tsconfig.react.json"
42
+ "extends": "@aristobyte/typescript-config/tsconfig.react.json"
43
43
  }
44
44
  ```
45
45
 
@@ -47,7 +47,7 @@ or
47
47
 
48
48
  ```json
49
49
  {
50
- "extends": "@aristobyte-ui/typescript-config/tsconfig.next.json"
50
+ "extends": "@aristobyte/typescript-config/tsconfig.next.json"
51
51
  }
52
52
  ```
53
53
 
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@aristobyte-ui/typescript-config",
3
3
  "description": "Shared TypeScript config presets used across AristoByteUI platform and packages.",
4
- "version": "1.0.5",
5
- "private": false,
4
+ "version": "1.0.7",
6
5
  "license": "MIT",
6
+ "private": false,
7
7
  "main": "tsconfig.base.json",
8
8
  "author": "AristoByte <info@aristobyte.com>",
9
9
  "homepage": "https://github.com/aristobyte-team/aristobyte-ui.git#readme",
@@ -42,5 +42,6 @@
42
42
  ],
43
43
  "publishConfig": {
44
44
  "access": "public"
45
- }
45
+ },
46
+ "dependencies": {}
46
47
  }
@@ -41,7 +41,6 @@
41
41
  "@types/*": ["@types/*"]
42
42
  },
43
43
 
44
- "types": ["node"],
45
44
  "typeRoots": ["./@types", "./node_modules/@types"],
46
45
  "forceConsistentCasingInFileNames": true
47
46
  }