nestia 2.0.11-dev.20220420 → 2.0.11

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -109,6 +109,15 @@ export interface IConfiguration
109
109
  */
110
110
  assert?: boolean;
111
111
 
112
+ /**
113
+ * Whether to optimize JSON string conversion or not.
114
+ *
115
+ * If you configure this option to be `true`, the SDK library would utilize the
116
+ * [typescript-json](https://github.com/samchon/typescript-json) and the JSON string
117
+ * conversion speed really be two times faster.
118
+ */
119
+ json?: boolean;
120
+
112
121
  /**
113
122
  * List of files or directories containing the NestJS controller classes.
114
123
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nestia",
3
- "version": "2.0.11-dev.20220420",
3
+ "version": "2.0.11",
4
4
  "description": "Automatic SDK and Document generator for the NestJS",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "ttypescript": "^1.5.13",
43
43
  "typescript": "^4.6.3",
44
44
  "typescript-is": "^0.19.0",
45
- "typescript-json": "^2.0.1-dev.20220419",
45
+ "typescript-json": "^2.0.1",
46
46
  "typescript-transform-paths": "^3.3.1"
47
47
  },
48
48
  "devDependencies": {