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