@intelligentgraphics/ig.gfx.packager 2.0.8 → 2.0.9
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/build/index.js +1049 -459
- package/build/index.js.map +1 -1
- package/package.json +2 -2
- package/readme.md +18 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intelligentgraphics/ig.gfx.packager",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "IG.GFX.Packager 2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
|
+
"description": "IG.GFX.Packager 2.0.9 (2.0.9.100)",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
package/readme.md
CHANGED
|
@@ -192,8 +192,26 @@ Release:
|
|
|
192
192
|
npm run upload Basics -- --newVersion=1.0.0.100 --domain=IG --subdomain=Test
|
|
193
193
|
```
|
|
194
194
|
|
|
195
|
+
### Tsconfig
|
|
196
|
+
|
|
197
|
+
This program automatically creates a tsconfig file for every package to allow Visual Studio Code to provide the correct completions.
|
|
198
|
+
|
|
199
|
+
This tsconfig file includes the following options:
|
|
200
|
+
|
|
201
|
+
**target**
|
|
202
|
+
|
|
203
|
+
Sets the javascript version the typescript files should be compiled to.
|
|
204
|
+
|
|
205
|
+
**lib**
|
|
206
|
+
|
|
207
|
+
Specifies the standard libraries that are available.
|
|
208
|
+
|
|
195
209
|
## History
|
|
196
210
|
|
|
211
|
+
**IG.GFX.Packager 2.0.9**
|
|
212
|
+
|
|
213
|
+
- automatically generate a tsconfig when non exists
|
|
214
|
+
|
|
197
215
|
**IG.GFX.Packager 2.0.8**
|
|
198
216
|
|
|
199
217
|
- also emit all diagnostics when emit wasn't skipped
|