@sapphire/ts-config 3.3.0 → 3.3.1

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
@@ -221,6 +221,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
221
221
  <td align="center"><a href="https://github.com/ItsMrCube"><img src="https://avatars.githubusercontent.com/u/25201357?v=4?s=100" width="100px;" alt=""/><br /><sub><b>MrCube</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=ItsMrCube" title="Code">💻</a></td>
222
222
  <td align="center"><a href="https://github.com/bitomic"><img src="https://avatars.githubusercontent.com/u/35199700?v=4?s=100" width="100px;" alt=""/><br /><sub><b>bitomic</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=bitomic" title="Code">💻</a></td>
223
223
  </tr>
224
+ <tr>
225
+ <td align="center"><a href="https://c43721.dev/"><img src="https://avatars.githubusercontent.com/u/55610086?v=4?s=100" width="100px;" alt=""/><br /><sub><b>c43721</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=c43721" title="Code">💻</a></td>
226
+ </tr>
224
227
  </table>
225
228
 
226
229
  <!-- markdownlint-restore -->
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/tsconfig.json",
3
+ "extends": "./extra-strict.json",
4
+ "compilerOptions": {
5
+ "emitDecoratorMetadata": false,
6
+ "experimentalDecorators": false
7
+ }
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/ts-config",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "Shareable TypeScript configuration for the Sapphire Community",
5
5
  "author": "@sapphire",
6
6
  "license": "MIT",
@@ -37,9 +37,8 @@
37
37
  },
38
38
  "files": [
39
39
  "tsconfig.json",
40
- "extra-strict-with-decorators.json",
41
- "extra-strict.json",
42
- "with-decorators.json"
40
+ "extra-strict*.json",
41
+ "*decorators*.json"
43
42
  ],
44
43
  "engines": {
45
44
  "node": ">=v16.0.0",
@@ -66,5 +65,5 @@
66
65
  "publishConfig": {
67
66
  "access": "public"
68
67
  },
69
- "gitHead": "d3459b86db1153dbe2e3a8b7909da4e47c612824"
68
+ "gitHead": "6644d949d3938a1bed3a456849ffe8c6f436038d"
70
69
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/tsconfig.json",
3
+ "extends": "./tsconfig.json",
4
+ "compilerOptions": {
5
+ "emitDecoratorMetadata": false,
6
+ "experimentalDecorators": false
7
+ }
8
+ }