@aristobyte-ui/typescript-config 1.0.6 → 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 +4 -4
- package/package.json +4 -3
- package/tsconfig.base.json +0 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @aristobyte
|
|
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
|
|
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
|
|
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
|
|
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
|
-
"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
|
}
|