@adbayb/stack 0.0.0-next-1dfe647 → 0.0.0-next-d23a669
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.
|
@@ -43,10 +43,4 @@ Edit the `tsconfig.json` file to include the following:
|
|
|
43
43
|
|
|
44
44
|
The default configuration is versatile and suitable for all projects, whether back-end or front-end.
|
|
45
45
|
|
|
46
|
-
However, certain configuration flavors are also available for tailoring project-specific needs, which require extending the base `@adbayb/stack/typescript` configuration:
|
|
47
|
-
|
|
48
|
-
| Flavor | Description | Usage |
|
|
49
|
-
| -------------------------------- | ------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
50
|
-
| `@adbayb/stack/typescript/react` | React-based configurations to set up JSX and global DOM types | `"extends": ["@adbayb/stack/typescript", "@adbayb/stack/typescript/react"]` |
|
|
51
|
-
|
|
52
46
|
<br />
|
|
@@ -9,7 +9,14 @@
|
|
|
9
9
|
"checkJs": false,
|
|
10
10
|
"exactOptionalPropertyTypes": true,
|
|
11
11
|
"incremental": true,
|
|
12
|
-
"
|
|
12
|
+
"jsx": "react-jsx",
|
|
13
|
+
"lib": [
|
|
14
|
+
"ESNext",
|
|
15
|
+
"DOM",
|
|
16
|
+
"DOM.AsyncIterable",
|
|
17
|
+
"DOM.Iterable",
|
|
18
|
+
"WebWorker.ImportScripts"
|
|
19
|
+
],
|
|
13
20
|
"module": "Preserve",
|
|
14
21
|
"noEmit": true,
|
|
15
22
|
"noErrorTruncation": true,
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { existsSync, cpSync, readFileSync, renameSync, writeFileSync, readdirSyn
|
|
|
6
6
|
import { writeFile, chmod, mkdir, symlink } from 'node:fs/promises';
|
|
7
7
|
import { fdir } from 'fdir';
|
|
8
8
|
|
|
9
|
-
var version = "0.0.0-next-
|
|
9
|
+
var version = "0.0.0-next-d23a669";
|
|
10
10
|
|
|
11
11
|
const VERSION = version;
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adbayb/stack",
|
|
3
|
-
"version": "0.0.0-next-
|
|
3
|
+
"version": "0.0.0-next-d23a669",
|
|
4
4
|
"description": "My opinionated JavaScript-based toolchain",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"./eslint": "./config/eslint/index.js",
|
|
24
24
|
"./prettier": "./config/prettier/index.js",
|
|
25
|
-
"./typescript": "./config/typescript/
|
|
26
|
-
"./typescript/react": "./config/typescript/react.json"
|
|
25
|
+
"./typescript": "./config/typescript/index.json"
|
|
27
26
|
},
|
|
28
27
|
"keywords": [
|
|
29
28
|
"stack",
|
|
@@ -43,37 +42,38 @@
|
|
|
43
42
|
},
|
|
44
43
|
"license": "MIT",
|
|
45
44
|
"devDependencies": {
|
|
46
|
-
"@types/node": "20.16.12",
|
|
47
45
|
"@types/eslint-config-prettier": "6.11.3",
|
|
48
|
-
"
|
|
46
|
+
"@types/node": "22.8.6",
|
|
47
|
+
"quickbundle": "2.6.0"
|
|
49
48
|
},
|
|
50
49
|
"dependencies": {
|
|
51
50
|
"@changesets/changelog-github": "^0.5.0",
|
|
52
51
|
"@changesets/cli": "^2.27.9",
|
|
53
52
|
"@commitlint/cli": "^19.5.0",
|
|
54
53
|
"@commitlint/config-conventional": "^19.5.0",
|
|
55
|
-
"@eslint/compat": "^1.2.
|
|
54
|
+
"@eslint/compat": "^1.2.2",
|
|
56
55
|
"@eslint/eslintrc": "^3.1.0",
|
|
56
|
+
"@stylistic/eslint-plugin": "^2.10.1",
|
|
57
57
|
"@vitest/eslint-plugin": "^1.1.7",
|
|
58
58
|
"eslint-config-prettier": "^9.1.0",
|
|
59
59
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
60
|
-
"eslint-plugin-import-x": "^4.
|
|
60
|
+
"eslint-plugin-import-x": "^4.4.0",
|
|
61
61
|
"eslint-plugin-jest-formatting": "^3.1.0",
|
|
62
62
|
"eslint-plugin-jsdoc": "^50.4.3",
|
|
63
63
|
"eslint-plugin-mdx": "^3.1.5",
|
|
64
|
-
"eslint-plugin-n": "^17.
|
|
64
|
+
"eslint-plugin-n": "^17.12.0",
|
|
65
65
|
"eslint-plugin-prettier": "^5.2.1",
|
|
66
66
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
67
67
|
"eslint-plugin-react": "^7.37.2",
|
|
68
68
|
"eslint-plugin-sonarjs": "^2.0.4",
|
|
69
69
|
"eslint-plugin-sort-keys-custom-order": "^2.2.0",
|
|
70
|
-
"eslint": "^9.
|
|
70
|
+
"eslint": "^9.14.0",
|
|
71
71
|
"fdir": "^6.4.2",
|
|
72
72
|
"globals": "^15.11.0",
|
|
73
73
|
"prettier": "^3.3.3",
|
|
74
|
-
"termost": "^0.
|
|
74
|
+
"termost": "^0.18.0",
|
|
75
75
|
"turbo": "^2.2.3",
|
|
76
|
-
"typescript-eslint": "^8.
|
|
76
|
+
"typescript-eslint": "^8.12.2",
|
|
77
77
|
"typescript": "^5.6.3"
|
|
78
78
|
},
|
|
79
79
|
"scripts": {
|