@sapphire/ts-config 3.1.6 → 3.1.7-next.4bb40df.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 +3 -0
- package/package.json +3 -3
- package/tsconfig.json +7 -30
package/README.md
CHANGED
|
@@ -123,6 +123,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
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
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
|
+
<tr>
|
|
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
|
+
</tr>
|
|
126
129
|
</table>
|
|
127
130
|
|
|
128
131
|
<!-- markdownlint-restore -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/ts-config",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.7-next.4bb40df.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.5.
|
|
25
|
+
"typescript": "^4.5.4"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"tsconfig.json"
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "4bb40dff1273afbd17386e5b32dfe2746ed11ab5"
|
|
56
56
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,33 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"extends": "./src/tsconfig.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
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
|
}
|