@kurone-kito/typescript-config 0.19.0 → 0.20.0-alpha.3
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 +10 -2
- package/package.json +8 -12
- package/tsconfig.json +3 -1
package/README.md
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
|
-
# `@kurone-kito/typescript-config`
|
|
1
|
+
# 🟦 `@kurone-kito/typescript-config`
|
|
2
2
|
|
|
3
3
|
My TypeScript configuration for general Node.js projects.
|
|
4
4
|
|
|
5
|
+
## System Requirements
|
|
6
|
+
|
|
7
|
+
- Node.js: Any of the following versions
|
|
8
|
+
- Iron LTS (`^20.11.x`)
|
|
9
|
+
- Jod LTS (`^22.x.x`)
|
|
10
|
+
- Latest (`>=24.x.x`)
|
|
11
|
+
- TypeScript: `>=5.7.x`
|
|
12
|
+
|
|
5
13
|
## Usage
|
|
6
14
|
|
|
7
15
|
First, install this package and its peer dependencies:
|
|
@@ -21,6 +29,6 @@ If exists, merge the following configuration into it:
|
|
|
21
29
|
}
|
|
22
30
|
```
|
|
23
31
|
|
|
24
|
-
##
|
|
32
|
+
## LICENSE
|
|
25
33
|
|
|
26
34
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kurone-kito/typescript-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0-alpha.3",
|
|
4
4
|
"description": "My TypeScript configuration for general projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"config",
|
|
@@ -8,21 +8,17 @@
|
|
|
8
8
|
"typescript",
|
|
9
9
|
"typescriptconfig"
|
|
10
10
|
],
|
|
11
|
-
"homepage": "https://github.com/kurone-kito/
|
|
12
|
-
"bugs": "https://github.com/kurone-kito/
|
|
11
|
+
"homepage": "https://github.com/kurone-kito/builder-config#readme",
|
|
12
|
+
"bugs": "https://github.com/kurone-kito/builder-config/issues",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/kurone-kito/
|
|
15
|
+
"url": "https://github.com/kurone-kito/builder-config.git",
|
|
16
16
|
"directory": "packages/typescript-config"
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"author": "kurone-kito <krone@kit.black> (https://kit.black/)",
|
|
20
20
|
"type": "module",
|
|
21
|
-
"exports":
|
|
22
|
-
".": "./tsconfig.json",
|
|
23
|
-
"./tsconfig.json": "./tsconfig.json"
|
|
24
|
-
},
|
|
25
|
-
"main": "tsconfig.json",
|
|
21
|
+
"exports": "./tsconfig.json",
|
|
26
22
|
"files": [
|
|
27
23
|
"tsconfig.json"
|
|
28
24
|
],
|
|
@@ -32,7 +28,7 @@
|
|
|
32
28
|
"typescript": "~5.8.3"
|
|
33
29
|
},
|
|
34
30
|
"peerDependencies": {
|
|
35
|
-
"typescript": ">=5.
|
|
31
|
+
"typescript": ">=5.7.x"
|
|
36
32
|
},
|
|
37
33
|
"peerDependenciesMeta": {
|
|
38
34
|
"typescript": {
|
|
@@ -40,13 +36,13 @@
|
|
|
40
36
|
}
|
|
41
37
|
},
|
|
42
38
|
"engines": {
|
|
43
|
-
"node": "^20.11 || >=
|
|
39
|
+
"node": "^20.11 || ^22 || >=24"
|
|
44
40
|
},
|
|
45
41
|
"publishConfig": {
|
|
46
42
|
"access": "public"
|
|
47
43
|
},
|
|
48
44
|
"scripts": {
|
|
49
45
|
"build": "cpy --flat ../../LICENSE .",
|
|
50
|
-
"clean": "rimraf -g \"*.tgz\"
|
|
46
|
+
"clean": "rimraf -g \"*.tgz\" LICENSE node_modules/.cache"
|
|
51
47
|
}
|
|
52
48
|
}
|
package/tsconfig.json
CHANGED
|
@@ -24,10 +24,12 @@
|
|
|
24
24
|
"noUnusedParameters": true,
|
|
25
25
|
"preserveWatchOutput": true,
|
|
26
26
|
"resolveJsonModule": true,
|
|
27
|
+
"rewriteRelativeImportExtensions": true,
|
|
27
28
|
"sourceMap": true,
|
|
28
29
|
"strict": true,
|
|
29
30
|
"stripInternal": true,
|
|
30
|
-
"target": "ES2023"
|
|
31
|
+
"target": "ES2023",
|
|
32
|
+
"verbatimModuleSyntax": true
|
|
31
33
|
},
|
|
32
34
|
"typeAcquisition": {
|
|
33
35
|
"enable": true
|