@w0s/tsconfig 1.5.1 → 1.6.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 +1 -1
- package/package.json +30 -30
- package/tsconfig.json +39 -38
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# tsconfig
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@w0s/tsconfig)
|
|
4
|
-
[](https://github.com/SaekiTominaga/w0s/actions/workflows/typescript.yml)
|
|
5
5
|
|
|
6
6
|
[TSConfig](https://www.typescriptlang.org/tsconfig) file used on my personal website ([w0s.jp](https://github.com/SaekiTominaga/w0s.jp)).
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@w0s/tsconfig",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "TSConfig file used on w0s.jp",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"tsconfig"
|
|
7
|
-
],
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"author": "Saeki Tominaga",
|
|
10
|
-
"files": [],
|
|
11
|
-
"type": "module",
|
|
12
|
-
"main": "tsconfig.json",
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "git+https://github.com/SaekiTominaga/config.git"
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"test": "tsc --project __tests__/tsconfig-valid.json",
|
|
19
|
-
"test-invalid": "tsc --project __tests__/tsconfig-invalid.json"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"typescript": "^5.
|
|
23
|
-
},
|
|
24
|
-
"peerDependencies": {
|
|
25
|
-
"typescript": "^
|
|
26
|
-
},
|
|
27
|
-
"publishConfig": {
|
|
28
|
-
"access": "public"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@w0s/tsconfig",
|
|
3
|
+
"version": "1.6.0",
|
|
4
|
+
"description": "TSConfig file used on w0s.jp",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tsconfig"
|
|
7
|
+
],
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"author": "Saeki Tominaga",
|
|
10
|
+
"files": [],
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "tsconfig.json",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/SaekiTominaga/config.git"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"test": "tsc --project __tests__/tsconfig-valid.json",
|
|
19
|
+
"test-invalid": "tsc --project __tests__/tsconfig-invalid.json"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"typescript": "^5.9.2"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"typescript": "^5.7.0"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
}
|
|
30
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -1,38 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
/* Type Checking */
|
|
4
|
-
"allowUnreachableCode": false,
|
|
5
|
-
"allowUnusedLabels": false,
|
|
6
|
-
"alwaysStrict": false,
|
|
7
|
-
"exactOptionalPropertyTypes": true,
|
|
8
|
-
"noFallthroughCasesInSwitch": true,
|
|
9
|
-
"noImplicitOverride": true,
|
|
10
|
-
"noImplicitReturns": true,
|
|
11
|
-
"noPropertyAccessFromIndexSignature": true,
|
|
12
|
-
"noUncheckedIndexedAccess": true,
|
|
13
|
-
"noUnusedLocals": true,
|
|
14
|
-
"noUnusedParameters": true,
|
|
15
|
-
"strict": true,
|
|
16
|
-
|
|
17
|
-
/* Modules */
|
|
18
|
-
"module": "ES2022",
|
|
19
|
-
"moduleResolution": "Node",
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
/* Type Checking */
|
|
4
|
+
"allowUnreachableCode": false,
|
|
5
|
+
"allowUnusedLabels": false,
|
|
6
|
+
"alwaysStrict": false,
|
|
7
|
+
"exactOptionalPropertyTypes": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noImplicitOverride": true,
|
|
10
|
+
"noImplicitReturns": true,
|
|
11
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
12
|
+
"noUncheckedIndexedAccess": true,
|
|
13
|
+
"noUnusedLocals": true,
|
|
14
|
+
"noUnusedParameters": true,
|
|
15
|
+
"strict": true,
|
|
16
|
+
|
|
17
|
+
/* Modules */
|
|
18
|
+
"module": "ES2022",
|
|
19
|
+
"moduleResolution": "Node",
|
|
20
|
+
"rewriteRelativeImportExtensions": true,
|
|
21
|
+
|
|
22
|
+
/* Emit */
|
|
23
|
+
"newLine": "lf",
|
|
24
|
+
|
|
25
|
+
/* Interop Constraints */
|
|
26
|
+
"esModuleInterop": true,
|
|
27
|
+
"forceConsistentCasingInFileNames": true,
|
|
28
|
+
"verbatimModuleSyntax": true,
|
|
29
|
+
|
|
30
|
+
/* Language and Environment */
|
|
31
|
+
"target": "ES2022",
|
|
32
|
+
|
|
33
|
+
/* Projects */
|
|
34
|
+
"incremental": true,
|
|
35
|
+
|
|
36
|
+
/* Completeness */
|
|
37
|
+
"skipLibCheck": true
|
|
38
|
+
}
|
|
39
|
+
}
|