@sapphire/ts-config 3.1.8 → 3.2.0-next.365a53a.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
@@ -127,6 +127,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
127
127
  <td align="center"><a href="https://gitlab.com/DavidPH/"><img src="https://avatars.githubusercontent.com/u/44669930?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=DavidPHH" title="Code">💻</a></td>
128
128
  <td align="center"><a href="https://github.com/apps/renovate"><img src="https://avatars.githubusercontent.com/in/2740?v=4?s=100" width="100px;" alt=""/><br /><sub><b>renovate[bot]</b></sub></a><br /><a href="#maintenance-renovate[bot]" title="Maintenance">🚧</a></td>
129
129
  <td align="center"><a href="https://renovate.whitesourcesoftware.com/"><img src="https://avatars.githubusercontent.com/u/25180681?v=4?s=100" width="100px;" alt=""/><br /><sub><b>WhiteSource Renovate</b></sub></a><br /><a href="#maintenance-renovate-bot" title="Maintenance">🚧</a></td>
130
+ <td align="center"><a href="https://fc5570.me/"><img src="https://avatars.githubusercontent.com/u/68158483?v=4?s=100" width="100px;" alt=""/><br /><sub><b>FC</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=FC5570" title="Code">💻</a></td>
131
+ <td align="center"><a href="https://github.com/Tokipudi"><img src="https://avatars.githubusercontent.com/u/29551076?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jérémy de Saint Denis</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=Tokipudi" title="Code">💻</a></td>
132
+ <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>
133
+ <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>
130
134
  </tr>
131
135
  </table>
132
136
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/ts-config",
3
- "version": "3.1.8",
3
+ "version": "3.2.0-next.365a53a.0",
4
4
  "description": "Shareable TypeScript configuration for the Sapphire Community",
5
5
  "author": "@sapphire",
6
6
  "license": "MIT",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "tslib": "^2.3.1",
25
- "typescript": "^4.5.4"
25
+ "typescript": "^4.5.5"
26
26
  },
27
27
  "files": [
28
28
  "tsconfig.json"
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "34b4e27cc763ede66c3df5a7ab2954eaa688dcde"
55
+ "gitHead": "365a53a5517a01a0926cf28a83c96b63f32ed9f8"
56
56
  }
package/tsconfig.json CHANGED
@@ -1,33 +1,10 @@
1
1
  {
2
- "compileOnSave": true,
2
+ "extends": "./src/tsconfig.json",
3
3
  "compilerOptions": {
4
- "allowSyntheticDefaultImports": true,
5
- "alwaysStrict": true,
6
- "declaration": true,
7
- "declarationMap": true,
8
- "emitDecoratorMetadata": true,
9
- "esModuleInterop": true,
10
- "experimentalDecorators": true,
11
- "forceConsistentCasingInFileNames": true,
12
- "importHelpers": true,
13
- "importsNotUsedAsValues": "error",
14
- "incremental": true,
15
- "lib": ["esnext"],
16
- "module": "CommonJS",
17
- "moduleResolution": "Node",
18
- "newLine": "lf",
19
- "noEmitHelpers": true,
20
- "noFallthroughCasesInSwitch": true,
21
- "noImplicitReturns": true,
22
- "noUnusedLocals": true,
23
- "noUnusedParameters": true,
24
- "preserveConstEnums": true,
25
- "pretty": true,
26
- "removeComments": false,
27
- "resolveJsonModule": true,
28
- "sourceMap": true,
29
- "strict": true,
30
- "target": "ES2020",
31
- "useDefineForClassFields": true
32
- }
4
+ "outDir": "build",
5
+ "rootDir": "tests",
6
+ "composite": true,
7
+ "tsBuildInfoFile": "./build/.tsbuildinfo"
8
+ },
9
+ "include": ["tests"]
33
10
  }