@interfere/typescript-config 1.0.3-alpha.2 → 1.1.0-alpha.4

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 (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +44 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @interfere/typescript-config
2
2
 
3
+ ## 1.1.0-alpha.4
4
+
5
+ ### Patch Changes
6
+
7
+ - bump
8
+
9
+ ## 1.1.0-alpha.3
10
+
11
+ ### Minor Changes
12
+
13
+ - [`949b3e2`](https://github.com/interfere-inc/interfere/commit/949b3e27002091477e4fdbd37e6c77d6de4ff780) Thanks [@skve](https://github.com/skve)! - Fixed dependency graph
14
+
15
+ ### Patch Changes
16
+
17
+ - [`4506e8d`](https://github.com/interfere-inc/interfere/commit/4506e8d301a06600345dff51c7e141e783acee52) Thanks [@skve](https://github.com/skve)! - Updated readme
18
+
3
19
  ## 1.0.3-alpha.2
4
20
 
5
21
  ### Patch Changes
package/README.md ADDED
@@ -0,0 +1,44 @@
1
+ <p align="center">
2
+ <a href="https://interfere.com">
3
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://qyzkf4cgb8ydxtq1.public.blob.vercel-storage.com/v2/header/logo-dark.png">
5
+ <img src="https://qyzkf4cgb8ydxtq1.public.blob.vercel-storage.com/v2/header/logo-light.png" height="64">
6
+ </picture>
7
+ </a>
8
+ <h1 align="center">@interfere/typescript-config</h1>
9
+ </p>
10
+
11
+ <p align="center">
12
+ <a href="https://www.npmjs.com/package/@interfere/typescript-config"><img src="https://img.shields.io/npm/v/@interfere/typescript-config.svg" /></a>
13
+ <a href="https://github.com/interfere-inc/interfere/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@interfere/typescript-config.svg" /></a>
14
+ </p>
15
+
16
+ <p align="center">
17
+ Shared TypeScript configurations used across <a href="https://interfere.com">Interfere</a> packages.
18
+ </p>
19
+
20
+ ---
21
+
22
+ ## Installation
23
+
24
+ ```bash
25
+ npm install @interfere/typescript-config
26
+ ```
27
+
28
+ ## Notice
29
+
30
+ This is still a work in progress, and we are pushing breaking changes almost daily. Until `v1.0.0`, there are no guarantees of stable backwards compatibility.
31
+
32
+ ## Usage
33
+
34
+ Extend from a config in your `tsconfig.json`:
35
+
36
+ ```json
37
+ {
38
+ "extends": "@interfere/typescript-config/base.json"
39
+ }
40
+ ```
41
+
42
+ ## License
43
+
44
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interfere/typescript-config",
3
- "version": "1.0.3-alpha.2",
3
+ "version": "1.1.0-alpha.4",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "repository": {