@xylabs/tsconfig 8.6.9 → 8.6.11

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/README.md +1 -66
  2. package/package.json +9 -36
  3. package/tsconfig.json +1 -27
package/README.md CHANGED
@@ -1,68 +1,3 @@
1
- [![logo][]](https://xylabs.com)
2
-
3
1
  # @xylabs/tsconfig
4
2
 
5
- [![npm][npm-badge]][npm-link]
6
- [![license][license-badge]][license-link]
7
-
8
- > Typescript Base Config used throughout XY Labs TypeScript/JavaScript libraries and react projects
9
-
10
- ## Install
11
-
12
- Using npm:
13
-
14
- ```sh
15
- npm install -D {{name}}
16
- ```
17
-
18
- Using yarn:
19
-
20
- ```sh
21
- yarn add -D {{name}}
22
- ```
23
-
24
- Using pnpm:
25
-
26
- ```sh
27
- pnpm add -D {{name}}
28
- ```
29
-
30
- Using bun:
31
-
32
- ```sh
33
- bun add -D {{name}}
34
- ```
35
-
36
- ## Usage
37
-
38
- Extend this config in your project's `tsconfig.json`:
39
-
40
- ```json
41
- {
42
- "extends": "@xylabs/tsconfig",
43
- "compilerOptions": {
44
- "outDir": "./dist"
45
- },
46
- "include": ["src"]
47
- }
48
- ```
49
-
50
- 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.
51
-
52
- For projects that need DOM types, use [`@xylabs/tsconfig-dom`](https://www.npmjs.com/package/@xylabs/tsconfig-dom) instead.
53
- For React projects, use [`@xylabs/tsconfig-react`](https://www.npmjs.com/package/@xylabs/tsconfig-react).
54
-
55
-
56
- ## License
57
-
58
- See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
59
-
60
- ## Credits
61
-
62
- [Made with 🔥 and ❄️ by XY Labs](https://xylabs.com)
63
-
64
- [npm-badge]: https://img.shields.io/npm/v/@xylabs/tsconfig.svg
65
- [npm-link]: https://www.npmjs.com/package/@xylabs/tsconfig
66
- [license-badge]: https://img.shields.io/npm/l/@xylabs/tsconfig.svg
67
- [license-link]: https://github.com/xylabs/sdk-js/blob/main/LICENSE
68
- [logo]: https://cdn.xy.company/img/brand/XYPersistentCompany_Logo_Icon_Colored.svg
3
+ Deprecated compatibility package. Use `@ariestools/tsconfig` instead.
package/package.json CHANGED
@@ -1,50 +1,22 @@
1
1
  {
2
- "$schema": "http://json.schemastore.org/package.json",
3
2
  "name": "@xylabs/tsconfig",
4
- "version": "8.6.9",
5
- "description": "Typescript Base Config used throughout XY Labs TypeScript/JavaScript libraries and react projects",
6
- "keywords": [
7
- "xylabs",
8
- "utility",
9
- "config",
10
- "typescript",
11
- "tsconfig"
12
- ],
13
- "homepage": "https://github.com/xylabs/tsconfig.git",
14
- "bugs": {
15
- "url": "git+https://github.com/xylabs/tsconfig/issues",
16
- "email": "support@xylabs.com"
17
- },
18
- "repository": {
19
- "type": "git",
20
- "url": "git+https://github.com/xylabs/config.git"
21
- },
22
- "license": "LGPL-3.0-only",
23
- "author": {
24
- "name": "XY Labs Development Team",
25
- "email": "support@xylabs.com",
26
- "url": "https://xylabs.com"
27
- },
3
+ "version": "8.6.11",
4
+ "description": "Deprecated compatibility stub for @ariestools/tsconfig",
28
5
  "sideEffects": false,
29
6
  "type": "module",
30
7
  "main": "./tsconfig.json",
31
8
  "module": "./tsconfig.json",
32
9
  "files": [
33
- "dist",
34
- "types",
35
10
  "README.md",
36
- "tsconfig.json",
37
- "LICENSE"
11
+ "tsconfig.json"
38
12
  ],
13
+ "dependencies": {
14
+ "@ariestools/tsconfig": "~8.6.11"
15
+ },
39
16
  "devDependencies": {
40
- "@types/node": "~26.0.1",
41
- "@typescript-eslint/parser": "~8.62.0",
42
- "acorn": "~8.17.0",
43
- "cosmiconfig": "~9.0.2",
44
- "eslint": "~10.5.0",
45
- "eslint-import-resolver-typescript": "~4.4.5",
17
+ "eslint": "~10.6.0",
46
18
  "typescript": "~6.0.3",
47
- "@xylabs/toolchain": "~8.6.9"
19
+ "@ariestools/toolchain": "~8.6.11"
48
20
  },
49
21
  "engines": {
50
22
  "node": ">=22"
@@ -52,6 +24,7 @@
52
24
  "publishConfig": {
53
25
  "access": "public"
54
26
  },
27
+ "deprecated": "Use @ariestools/tsconfig instead.",
55
28
  "scripts": {
56
29
  "package-compile": "echo Compiled"
57
30
  }
package/tsconfig.json CHANGED
@@ -1,29 +1,3 @@
1
1
  {
2
- "compilerOptions": {
3
- "allowJs": true,
4
- "allowImportingTsExtensions": true,
5
- "allowSyntheticDefaultImports": true,
6
- "declaration": true,
7
- "declarationMap": true,
8
- "erasableSyntaxOnly": true,
9
- "esModuleInterop": true,
10
- "experimentalDecorators": true,
11
- "isolatedModules": true,
12
- "importHelpers": true,
13
- "incremental": false,
14
- "lib": ["ESNext"],
15
- "module": "NodeNext",
16
- "moduleResolution": "NodeNext",
17
- "noEmit": true,
18
- "noImplicitAny": true,
19
- "noImplicitOverride": true,
20
- "outDir": "dist",
21
- "removeComments": false,
22
- "resolveJsonModule": true,
23
- "skipLibCheck": true,
24
- "sourceMap": true,
25
- "strict": true,
26
- "target": "ESNext"
27
- },
28
- "exclude": [".github", ".vscode", ".yarn", "dist", "node_modules", "storybook-static", "build"]
2
+ "extends": "@ariestools/tsconfig"
29
3
  }