@codecompose/typescript-config 3.0.0 → 3.0.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +11 -2
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # typescript-config
2
2
 
3
+ Documentation: [typescript-config.codecompose.dev](https://typescript-config.codecompose.dev)
4
+
3
5
  Opinionated and reusable TypeScript configurations, geared towards modern build tooling in both monorepos and single repositories.
4
6
 
5
7
  - Uses the TypeScript compiler for type-checking only (*)
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@codecompose/typescript-config",
3
3
  "description": "Opinionated reusable TypeScript configurations",
4
- "version": "3.0.0",
4
+ "version": "3.0.1",
5
5
  "license": "MIT",
6
6
  "author": "Thijs Koerselman",
7
+ "homepage": "https://typescript-config.codecompose.dev",
7
8
  "repository": {
8
9
  "type": "git",
9
10
  "url": "https://github.com/0x80/typescript-config"
@@ -38,6 +39,14 @@
38
39
  "peerDependencies": {
39
40
  "typescript": ">=6.0.0"
40
41
  },
41
- "devDependencies": {},
42
+ "scripts": {
43
+ "docs:dev": "vitepress dev docs",
44
+ "docs:build": "vitepress build docs",
45
+ "docs:preview": "vitepress preview docs"
46
+ },
47
+ "devDependencies": {
48
+ "typescript": "^6.0.1-rc",
49
+ "vitepress": "^1.6.3"
50
+ },
42
51
  "packageManager": "pnpm@9.8.0"
43
52
  }