@theholocron/tsconfig 3.4.3 → 3.5.1
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 +2 -2
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ In your projects `tsconfig.json` add the following:
|
|
|
14
14
|
|
|
15
15
|
```json
|
|
16
16
|
{
|
|
17
|
-
|
|
17
|
+
"extends": "@theholcron/tsconfig/<config>/tsconfig.json"
|
|
18
18
|
}
|
|
19
19
|
```
|
|
20
20
|
|
|
@@ -23,4 +23,4 @@ There are 4 different base configurations to choose from:
|
|
|
23
23
|
1. NextJS (`@theholcron/tsconfig/nextjs/tsconfig.json`)
|
|
24
24
|
2. Node 14 (`@theholcron/tsconfig/node14/tsconfig.json`)
|
|
25
25
|
3. Node 18 (`@theholcron/tsconfig/node18/tsconfig.json`)
|
|
26
|
-
|
|
26
|
+
4. Node Next (`@theholcron/tsconfig/node-next/tsconfig.json`)
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/tsconfig",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "A Typescript configuration for checking types within the Galaxy.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/configs/tree/main/packages/lint-staged-config#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/configs/issues",
|
|
7
|
-
"repository":
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/theholocron/configs.git"
|
|
10
|
+
},
|
|
8
11
|
"license": "GPL-3.0",
|
|
9
12
|
"author": "Newton Koumantzelis",
|
|
10
13
|
"files": [
|
|
@@ -14,6 +17,7 @@
|
|
|
14
17
|
"node18/tsconfig.json"
|
|
15
18
|
],
|
|
16
19
|
"dependencies": {
|
|
20
|
+
"tsc": "^2.0.4",
|
|
17
21
|
"typescript": "^5.6.3"
|
|
18
22
|
},
|
|
19
23
|
"publishConfig": {
|