@pyreon/typescript 0.11.5 → 0.11.7

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 +10 -10
package/README.md CHANGED
@@ -54,9 +54,11 @@ All presets configure:
54
54
  - **Source maps** — enabled by default
55
55
 
56
56
  ### `app` adds:
57
+
57
58
  - `noEmit: true` — type-checking only, bundler handles emit
58
59
 
59
60
  ### `lib` adds:
61
+
60
62
  - `declaration: true` + `declarationMap: true` — generates `.d.ts` files for consumers
61
63
 
62
64
  ## License
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@pyreon/typescript",
3
- "version": "0.11.5",
3
+ "version": "0.11.7",
4
4
  "description": "TypeScript configuration presets for Pyreon projects",
5
+ "homepage": "https://github.com/pyreon/pyreon/tree/main/packages/typescript#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/pyreon/pyreon/issues"
8
+ },
5
9
  "license": "MIT",
6
10
  "repository": {
7
11
  "type": "git",
8
12
  "url": "https://github.com/pyreon/pyreon.git",
9
13
  "directory": "packages/tools/typescript"
10
14
  },
11
- "homepage": "https://github.com/pyreon/pyreon/tree/main/packages/typescript#readme",
12
- "bugs": {
13
- "url": "https://github.com/pyreon/pyreon/issues"
14
- },
15
15
  "files": [
16
16
  "base.json",
17
17
  "app.json",
@@ -24,17 +24,17 @@
24
24
  "./app": "./app.json",
25
25
  "./lib": "./lib.json"
26
26
  },
27
- "peerDependencies": {
28
- "@pyreon/core": ">=0.7.2",
29
- "typescript": ">=5.9.0"
30
- },
31
27
  "publishConfig": {
32
28
  "access": "public"
33
29
  },
34
30
  "scripts": {
35
31
  "build": "echo 'nothing to build'",
36
32
  "test": "echo 'nothing to test'",
37
- "lint": "biome check .",
33
+ "lint": "oxlint .",
38
34
  "typecheck": "echo 'nothing to typecheck'"
35
+ },
36
+ "peerDependencies": {
37
+ "@pyreon/core": ">=0.7.2",
38
+ "typescript": ">=5.9.0"
39
39
  }
40
40
  }