@skilbjo/config-rc 1.0.47 → 1.0.49
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/.nvmrc +1 -1
- package/CHANGELOG.md +14 -0
- package/index.js +7 -0
- package/package.json +3 -3
- package/tsconfig.json +3 -3
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
v24
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.0.49](https://github.com/skilbjo/config-rc/compare/v1.0.48...v1.0.49) (2026-04-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add consistent type imports ([c5030b1](https://github.com/skilbjo/config-rc/commit/c5030b132d3bb08f4c9933f29d790934f128486b))
|
|
7
|
+
|
|
8
|
+
## [1.0.48](https://github.com/skilbjo/config-rc/compare/v1.0.47...v1.0.48) (2026-04-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* node@24 ([28f94f3](https://github.com/skilbjo/config-rc/commit/28f94f349ad57224d237bf8ba44aae772874c92b))
|
|
14
|
+
|
|
1
15
|
## [1.0.47](https://github.com/skilbjo/config-rc/compare/v1.0.46...v1.0.47) (2026-04-12)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -106,6 +106,13 @@ const config = tseslint.config(
|
|
|
106
106
|
],
|
|
107
107
|
rules: {
|
|
108
108
|
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
|
|
109
|
+
'@typescript-eslint/consistent-type-imports': [
|
|
110
|
+
'error',
|
|
111
|
+
{
|
|
112
|
+
prefer: 'type-imports',
|
|
113
|
+
fixStyle: 'inline-type-imports',
|
|
114
|
+
},
|
|
115
|
+
],
|
|
109
116
|
'@typescript-eslint/no-floating-promises': 'error',
|
|
110
117
|
'@typescript-eslint/no-misused-promises': 'error',
|
|
111
118
|
'@typescript-eslint/no-unsafe-function-type': 'off',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@skilbjo/config-rc",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.49",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"private": false,
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@eslint/js": "9.39.2",
|
|
30
30
|
"@stylistic/eslint-plugin": "5.10.0",
|
|
31
|
-
"@tsconfig/
|
|
31
|
+
"@tsconfig/node24": "24.0.4",
|
|
32
32
|
"eslint": "9.39.2",
|
|
33
33
|
"eslint-config-prettier": "10.1.8",
|
|
34
34
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
|
-
"node": ">=
|
|
64
|
+
"node": ">=24.14.1"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"registry": "https://registry.npmjs.org/",
|
package/tsconfig.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
-
"display": "Node
|
|
4
|
-
"_version": "
|
|
5
|
-
"extends": "@tsconfig/
|
|
3
|
+
"display": "Node 24",
|
|
4
|
+
"_version": "24.0.0",
|
|
5
|
+
"extends": "@tsconfig/node24/tsconfig.json",
|
|
6
6
|
"compilerOptions": {
|
|
7
7
|
"module": "ESNext",
|
|
8
8
|
"moduleResolution": "Bundler",
|