@goldstack/utils-typescript-references 0.2.1 → 0.2.2
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 +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -113,6 +113,14 @@ $ utils-typescript-references --excludeInReferences @myproject/packageA --exclud
|
|
|
113
113
|
|
|
114
114
|
The above will cause `@myproject/packageA` and `@myproject/packageB` not to be inserted as referenced in all other packages of the monorepo.
|
|
115
115
|
|
|
116
|
+
### --excludeInRoot
|
|
117
|
+
|
|
118
|
+
Will prevent certain packages from being added to the `references` section of the root `tsconfig.json` file.
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
$ utils-typescript-references --excludeInRoot @myproject/packageA --excludeInRoot @myproject/PackageB
|
|
122
|
+
```
|
|
123
|
+
|
|
116
124
|
### --skipPackages
|
|
117
125
|
|
|
118
126
|
Will skip updating the `references` in `tsconfig.json` files for all packages in the project.
|