@xylabs/tsconfig 7.13.13 → 7.13.14

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/package.json +1 -1
  2. package/README.body.md +0 -44
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "http://json.schemastore.org/package.json",
3
3
  "name": "@xylabs/tsconfig",
4
- "version": "7.13.13",
4
+ "version": "7.13.14",
5
5
  "description": "Typescript Base Config used throughout XY Labs TypeScript/JavaScript libraries and react projects",
6
6
  "keywords": [
7
7
  "xylabs",
package/README.body.md DELETED
@@ -1,44 +0,0 @@
1
- ## Install
2
-
3
- Using npm:
4
-
5
- ```sh
6
- npm install -D {{name}}
7
- ```
8
-
9
- Using yarn:
10
-
11
- ```sh
12
- yarn add -D {{name}}
13
- ```
14
-
15
- Using pnpm:
16
-
17
- ```sh
18
- pnpm add -D {{name}}
19
- ```
20
-
21
- Using bun:
22
-
23
- ```sh
24
- bun add -D {{name}}
25
- ```
26
-
27
- ## Usage
28
-
29
- Extend this config in your project's `tsconfig.json`:
30
-
31
- ```json
32
- {
33
- "extends": "@xylabs/tsconfig",
34
- "compilerOptions": {
35
- "outDir": "./dist"
36
- },
37
- "include": ["src"]
38
- }
39
- ```
40
-
41
- This provides a strict, ESM-only TypeScript configuration targeting ESNext with NodeNext module resolution. It enables strict type checking, source maps, and declaration file generation.
42
-
43
- For projects that need DOM types, use [`@xylabs/tsconfig-dom`](https://www.npmjs.com/package/@xylabs/tsconfig-dom) instead.
44
- For React projects, use [`@xylabs/tsconfig-react`](https://www.npmjs.com/package/@xylabs/tsconfig-react).