@sapphire/ts-config 3.3.5-next.fb067bb.0 β†’ 3.3.5-next.fb2ce69.0

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 CHANGED
@@ -232,6 +232,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
232
232
  </tr>
233
233
  <tr>
234
234
  <td align="center"><a href="https://github.com/MajesticString"><img src="https://avatars.githubusercontent.com/u/66224939?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Harry Allen</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=MajesticString" title="Documentation">πŸ“–</a></td>
235
+ <td align="center"><a href="https://github.com/EvolutionX-10"><img src="https://avatars.githubusercontent.com/u/85353424?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evo</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=EvolutionX-10" title="Code">πŸ’»</a></td>
236
+ <td align="center"><a href="https://enes.ovh/"><img src="https://avatars.githubusercontent.com/u/61084101?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Enes GenΓ§</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=enxg" title="Code">πŸ’»</a></td>
237
+ <td align="center"><a href="https://github.com/muchnameless"><img src="https://avatars.githubusercontent.com/u/12682826?v=4?s=100" width="100px;" alt=""/><br /><sub><b>muchnameless</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=muchnameless" title="Code">πŸ’»</a></td>
235
238
  </tr>
236
239
  </table>
237
240
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/ts-config",
3
- "version": "3.3.5-next.fb067bb.0",
3
+ "version": "3.3.5-next.fb2ce69.0",
4
4
  "description": "Shareable TypeScript configuration for the Sapphire Community",
5
5
  "author": "@sapphire",
6
6
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  "sideEffects": false,
28
28
  "homepage": "https://github.com/sapphiredev/utilities/tree/main/packages/ts-config",
29
29
  "scripts": {
30
- "test": "jest",
30
+ "test": "vitest run",
31
31
  "lint": "eslint tests --ext mjs,ts --fix -c ../../.eslintrc",
32
32
  "build": "yarn lint && tsc -b tests",
33
33
  "bump": "cliff-jumper",
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "tslib": "^2.4.0",
38
- "typescript": "^4.6.4"
38
+ "typescript": "^4.7.4"
39
39
  },
40
40
  "files": [
41
41
  "tsconfig.json",
@@ -66,5 +66,8 @@
66
66
  ],
67
67
  "publishConfig": {
68
68
  "access": "public"
69
+ },
70
+ "devDependencies": {
71
+ "@favware/cliff-jumper": "^1.8.5"
69
72
  }
70
73
  }
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "extends": "../extra-strict-without-decorators.json",
3
3
  "compilerOptions": {
4
+ "lib": ["ESNext", "DOM"],
4
5
  "outDir": "../build",
5
6
  "rootDir": "./",
6
- "tsBuildInfoFile": "../build/test.tsbuildinfo"
7
+ "tsBuildInfoFile": "../build/test.tsbuildinfo",
8
+ "types": ["vitest/globals"]
7
9
  },
8
10
  "include": ["./"]
9
11
  }