@4mbl/tsconfig 0.0.0-beta.d55fc18 → 0.0.0-beta.e01637e

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @4mbl/tsconfig Changelog
2
2
 
3
+ ## 4.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ce274df: node-ts: add rewriteRelativeImportExtensions
8
+
9
+ ## 4.2.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 090f642: Add node-ts template.
14
+
3
15
  ## 4.1.3
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -6,6 +6,7 @@
6
6
  * [Available templates](#available-templates)
7
7
  * [Base (tsconfig)](#base-tsconfig)
8
8
  * [Node (tsconfig)](#node-tsconfig)
9
+ * [Node-TS (tsconfig)](#node-ts-tsconfig)
9
10
  * [Browser (tsconfig)](#browser-tsconfig)
10
11
  * [Next (tsconfig)](#next-tsconfig)
11
12
  * [Vite React (app | node)](#vite-react-app--node)
@@ -32,7 +33,7 @@ Create a `tsconfig.json` file in the root of your project and extend the desired
32
33
 
33
34
  ## Available templates
34
35
 
35
- There are currently five `tsconfig` templates.
36
+ These are the currently available `tsconfig` templates.
36
37
 
37
38
  ### Base (<kbd>[tsconfig](https://unpkg.com/@4mbl/tsconfig@latest/base.json)</kbd>)
38
39
 
@@ -42,6 +43,10 @@ This is the base `tsconfig` file that is used by the other templates. It contain
42
43
 
43
44
  Extends the base template with configuration specific to Node.js.
44
45
 
46
+ ### Node-TS (<kbd>[tsconfig](https://unpkg.com/@4mbl/tsconfig@latest/node-ts.json)</kbd>)
47
+
48
+ Extends the node template with configuration for TypeScript-only projects.
49
+
45
50
  ### Browser (<kbd>[tsconfig](https://unpkg.com/@4mbl/tsconfig@latest/browser.json)</kbd>)
46
51
 
47
52
  Extends the base template with configuration specific to browser and React applications.
@@ -105,6 +110,6 @@ As of version 4.0.0, the package migrated to a single template per type. The pac
105
110
 
106
111
  The package follows the following versioning scheme: `X.Y.Z`
107
112
 
108
- * `X` - Breaking changes to the base template.
109
- * `Y` - Breaking changes to individual, non-base templates. New templates may be introduced.
110
- * `Z` - Minor fixes to any template.
113
+ - `X` - Breaking changes to the base template.
114
+ - `Y` - Breaking changes to individual, non-base templates. New templates may be introduced.
115
+ - `Z` - Minor fixes to any template.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/tsconfig",
3
- "version": "0.0.0-beta.d55fc18",
3
+ "version": "0.0.0-beta.e01637e",
4
4
  "description": "Strict TypeScript configuration for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",
@@ -9,6 +9,7 @@
9
9
  "exports": {
10
10
  "./browser": "./dist/browser.json",
11
11
  "./next": "./dist/next.json",
12
+ "./node-ts": "./dist/node-ts.json",
12
13
  "./node": "./dist/node.json",
13
14
  "./vite-react/app": "./dist/vite-react/app.json",
14
15
  "./vite-react/node": "./dist/vite-react/node.json"