@fgv/ts-json-base 5.0.0-25 → 5.0.0-26
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/eslint.config.js +16 -0
- package/package.json +11 -11
package/eslint.config.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// ESLint 9 flat config
|
|
2
|
+
const nodeProfile = require('@rushstack/eslint-config/flat/profile/node');
|
|
3
|
+
const packletsPlugin = require('@rushstack/eslint-config/flat/mixins/packlets');
|
|
4
|
+
const tsdocPlugin = require('@rushstack/eslint-config/flat/mixins/tsdoc');
|
|
5
|
+
|
|
6
|
+
module.exports = [
|
|
7
|
+
...nodeProfile,
|
|
8
|
+
packletsPlugin,
|
|
9
|
+
...tsdocPlugin,
|
|
10
|
+
{
|
|
11
|
+
// Override specific rules if needed
|
|
12
|
+
rules: {
|
|
13
|
+
'@rushstack/packlets/mechanics': 'warn'
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fgv/ts-json-base",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-26",
|
|
4
4
|
"description": "Typescript types and basic functions for working with json",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "dist/ts-json-base.d.ts",
|
|
@@ -18,19 +18,19 @@
|
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/jest": "^29.5.14",
|
|
20
20
|
"@types/node": "^20.14.9",
|
|
21
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
22
|
-
"@typescript-eslint/parser": "^
|
|
23
|
-
"eslint": "^
|
|
21
|
+
"@typescript-eslint/eslint-plugin": "^8.42.0",
|
|
22
|
+
"@typescript-eslint/parser": "^8.42.0",
|
|
23
|
+
"eslint": "^9.35.0",
|
|
24
24
|
"eslint-plugin-import": "^2.32.0",
|
|
25
25
|
"eslint-plugin-node": "^11.1.0",
|
|
26
|
-
"eslint-plugin-promise": "^
|
|
26
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
27
27
|
"jest": "^29.7.0",
|
|
28
28
|
"jest-extended": "^4.0.2",
|
|
29
|
-
"rimraf": "^
|
|
29
|
+
"rimraf": "^6.0.1",
|
|
30
30
|
"ts-jest": "^29.4.1",
|
|
31
31
|
"ts-node": "^10.9.2",
|
|
32
32
|
"typescript": "5.8.3",
|
|
33
|
-
"eslint-plugin-n": "^
|
|
33
|
+
"eslint-plugin-n": "^17.21.3",
|
|
34
34
|
"@rushstack/heft-node-rig": "2.9.4",
|
|
35
35
|
"@rushstack/heft": "0.74.3",
|
|
36
36
|
"@rushstack/heft-jest-plugin": "0.16.12",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"@rushstack/eslint-patch": "~1.12.0",
|
|
40
40
|
"@rushstack/eslint-config": "4.4.0",
|
|
41
41
|
"eslint-plugin-tsdoc": "~0.4.0",
|
|
42
|
-
"@fgv/ts-utils": "5.0.0-
|
|
43
|
-
"@fgv/ts-
|
|
44
|
-
"@fgv/ts-
|
|
42
|
+
"@fgv/ts-utils": "5.0.0-26",
|
|
43
|
+
"@fgv/ts-extras": "5.0.0-26",
|
|
44
|
+
"@fgv/ts-utils-jest": "5.0.0-26"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@fgv/ts-utils": "5.0.0-
|
|
47
|
+
"@fgv/ts-utils": "5.0.0-26"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "heft test --clean",
|