@xonovex/ts-config-cli 0.1.3 → 0.1.5
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/README.md +35 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @xonovex/ts-config-cli
|
|
2
|
+
|
|
3
|
+
TypeScript configuration for CLI tools and scripts.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -D @xonovex/ts-config-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
Extend in your `tsconfig.json`:
|
|
14
|
+
|
|
15
|
+
```json
|
|
16
|
+
{
|
|
17
|
+
"extends": "@xonovex/ts-config-cli",
|
|
18
|
+
"compilerOptions": {
|
|
19
|
+
"outDir": "dist",
|
|
20
|
+
"rootDir": "."
|
|
21
|
+
},
|
|
22
|
+
"include": ["src"]
|
|
23
|
+
}
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Features
|
|
27
|
+
|
|
28
|
+
Extends `@xonovex/ts-config-base` with CLI-specific settings:
|
|
29
|
+
|
|
30
|
+
- Node.js types included
|
|
31
|
+
- Optimized for executable scripts
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xonovex/ts-config-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "TypeScript configuration for CLI tools and scripts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@xonovex/ts-config-base": "0.1.
|
|
32
|
+
"@xonovex/ts-config-base": "0.1.4",
|
|
33
33
|
"@types/node": "^25.0.10"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|