@oneuptime/common 7.0.1966 → 7.0.1982

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/package.json +2 -2
  2. package/tsconfig.json +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oneuptime/common",
3
- "version": "7.0.1966",
3
+ "version": "7.0.1982",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,7 +27,7 @@
27
27
  "json5": "^2.2.3",
28
28
  "moment": "^2.30.1",
29
29
  "moment-timezone": "^0.5.45",
30
- "posthog-js": "^1.116.0",
30
+ "posthog-js": "^1.116.2",
31
31
  "reflect-metadata": "^0.2.1",
32
32
  "slugify": "^1.6.5",
33
33
  "typeorm": "^0.3.20",
package/tsconfig.json CHANGED
@@ -3,7 +3,8 @@
3
3
  // these options are overrides used only by ts-node
4
4
  // same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
5
5
  "compilerOptions": {
6
- "module": "commonjs"
6
+ "module": "commonjs",
7
+ "resolveJsonModule": true,
7
8
  }
8
9
  },
9
10
  "compilerOptions": {
@@ -108,6 +109,7 @@
108
109
 
109
110
  /* Completeness */
110
111
  // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
111
- "skipLibCheck": true /* Skip type checking all .d.ts files. */
112
+ "skipLibCheck": true, /* Skip type checking all .d.ts files. */
113
+ "resolveJsonModule": true
112
114
  }
113
115
  }