@w0s/tsconfig 1.6.1 → 1.7.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/package.json +30 -30
- package/tsconfig.json +3 -3
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.9.2"
|
|
23
|
-
},
|
|
24
|
-
"peerDependencies": {
|
|
25
|
-
"typescript": "^5.
|
|
26
|
-
},
|
|
27
|
-
"publishConfig": {
|
|
28
|
-
"access": "public"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@w0s/tsconfig",
|
|
3
|
+
"version": "1.7.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.8.0"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
}
|
|
30
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"strict": true,
|
|
16
16
|
|
|
17
17
|
/* Modules */
|
|
18
|
-
"module": "
|
|
19
|
-
"moduleResolution": "
|
|
18
|
+
"module": "node18",
|
|
19
|
+
"moduleResolution": "node16",
|
|
20
20
|
"rewriteRelativeImportExtensions": true,
|
|
21
21
|
|
|
22
22
|
/* Emit */
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"verbatimModuleSyntax": true,
|
|
30
30
|
|
|
31
31
|
/* Language and Environment */
|
|
32
|
-
"target": "
|
|
32
|
+
"target": "es2024",
|
|
33
33
|
|
|
34
34
|
/* Projects */
|
|
35
35
|
"incremental": true,
|