@sapphire/ts-config 3.1.4 → 3.1.5-next.81eee9e.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
@@ -121,7 +121,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
121
121
  <td align="center"><a href="https://github.com/nandhagk"><img src="https://avatars.githubusercontent.com/u/62976649?v=4?s=100" width="100px;" alt=""/><br /><sub><b>nandhagk</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/issues?q=author%3Anandhagk" title="Bug reports">🐛</a></td>
122
122
  <td align="center"><a href="https://megatank58.me/"><img src="https://avatars.githubusercontent.com/u/51410502?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Megatank58</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=Megatank58" title="Code">💻</a></td>
123
123
  <td align="center"><a href="https://github.com/UndiedGamer"><img src="https://avatars.githubusercontent.com/u/84702365?v=4?s=100" width="100px;" alt=""/><br /><sub><b>UndiedGamer</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=UndiedGamer" title="Code">💻</a></td>
124
- <td align="center"><a href="https://github.com/Lioness100"><img src="https://avatars.githubusercontent.com/u/65814829?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lioness100</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=Lioness100" title="Documentation">📖</a></td>
124
+ <td align="center"><a href="https://github.com/Lioness100"><img src="https://avatars.githubusercontent.com/u/65814829?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Lioness100</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=Lioness100" title="Documentation">📖</a> <a href="https://github.com/sapphiredev/utilities/commits?author=Lioness100" title="Code">💻</a></td>
125
125
  </tr>
126
126
  </table>
127
127
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/ts-config",
3
- "version": "3.1.4",
3
+ "version": "3.1.5-next.81eee9e.0",
4
4
  "description": "Shareable TypeScript configuration for all Sapphire Communitys repositories",
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.4.4"
25
+ "typescript": "^4.5.2"
26
26
  },
27
27
  "files": [
28
28
  "tsconfig.json"
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "4889ea35a0b081021981ff3d73e5005dd1e922ce"
55
+ "gitHead": "81eee9eeda133f5a616c750960f7a1b79dffc19f"
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
  }