@infinitetoken/tsconfig 0.1.0 → 0.1.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 +1 -1
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @infinitetoken/tsconfig
2
2
 
3
- Shared base `tsconfig.json` for InfiniteToken TypeScript packages. Holds the compiler flags every repo agrees on (strictness, declaration output, consistent casing) — build-mechanics options that vary per repo (`target`, `module`, `moduleResolution`, `rootDir`, `types`, `include`/`exclude`) stay local to each consumer.
3
+ Shared base `tsconfig.json` for InfiniteToken TypeScript packages. Holds the compiler flags every repo agrees on (strictness, declaration output, consistent casing). Build-mechanics options that vary per repo (`target`, `module`, `moduleResolution`, `rootDir`, `types`, `include`/`exclude`) stay local to each consumer.
4
4
 
5
5
  ## Usage
6
6
 
package/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "@infinitetoken/tsconfig",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Shared base tsconfig for InfiniteToken TypeScript packages",
5
5
  "keywords": [
6
6
  "config",
7
7
  "tsconfig",
8
8
  "typescript"
9
9
  ],
10
+ "homepage": "https://github.com/infinitetoken/tsconfig#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/infinitetoken/tsconfig/issues"
13
+ },
10
14
  "repository": {
11
15
  "type": "git",
12
16
  "url": "git+https://github.com/infinitetoken/tsconfig.git"
@@ -24,6 +28,10 @@
24
28
  ],
25
29
  "scripts": {
26
30
  "ci": "npm test",
31
+ "release": "git push --follow-tags",
32
+ "release:major": "npm version major && npm run release",
33
+ "release:minor": "npm version minor && npm run release",
34
+ "release:patch": "npm version patch && npm run release",
27
35
  "test": "tsc --noEmit -p test/tsconfig.json",
28
36
  "preversion": "npm run ci"
29
37
  },