@temboplus/tsconfig 0.1.13 → 0.2.0
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 +1 -8
- package/package.json +9 -9
- package/tsconfig.nestjs.json +2 -3
package/README.md
CHANGED
|
@@ -23,13 +23,6 @@ npm install --save-dev @temboplus/tsconfig
|
|
|
23
23
|
npm install --save tslib
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
or
|
|
27
|
-
|
|
28
|
-
```sh
|
|
29
|
-
npm install --save-dev git@github.com:TemboPlus-Inc/temboplus-tsconfig.git
|
|
30
|
-
npm install --save tslib
|
|
31
|
-
```
|
|
32
|
-
|
|
33
26
|
## Usage
|
|
34
27
|
|
|
35
28
|
Extend the desired config in your `tsconfig.json` or project-specific config files.
|
|
@@ -161,7 +154,7 @@ Extend the desired config in your `tsconfig.json` or project-specific config fil
|
|
|
161
154
|
|
|
162
155
|
### [NestJS](https://nestjs.com) Configurations
|
|
163
156
|
|
|
164
|
-
### Base Build (CommonJS &
|
|
157
|
+
### Base Build (CommonJS & nodenext)
|
|
165
158
|
|
|
166
159
|
```jsonc
|
|
167
160
|
// tsconfig.json or tsconfig.nestjs.json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temboplus/tsconfig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Base TypeScript configuration files for TemboPlus applications and packages",
|
|
5
5
|
"files": [
|
|
6
6
|
"tsconfig.base.json",
|
|
@@ -126,31 +126,31 @@
|
|
|
126
126
|
"@eslint/markdown": "^7.5.1",
|
|
127
127
|
"@jest/globals": "^30.2.0",
|
|
128
128
|
"@release-it/conventional-changelog": "<=10.0.1",
|
|
129
|
-
"@vitest/coverage-v8": "^4.0.
|
|
129
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
130
130
|
"conventional-commits-parser": "^6.2.1",
|
|
131
|
-
"cspell": "^9.
|
|
131
|
+
"cspell": "^9.6.0",
|
|
132
132
|
"eslint": "^9.39.2",
|
|
133
133
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
134
134
|
"eslint-config-prettier": "^10.1.8",
|
|
135
135
|
"eslint-plugin-import-x": "^4.16.1",
|
|
136
|
-
"eslint-plugin-jsdoc": "^62.
|
|
136
|
+
"eslint-plugin-jsdoc": "^62.3.0",
|
|
137
137
|
"eslint-plugin-jsonc": "^2.21.0",
|
|
138
138
|
"eslint-plugin-perfectionist": "^5.3.1",
|
|
139
|
-
"eslint-plugin-prettier": "^5.5.
|
|
139
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
140
140
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
141
|
-
"eslint-plugin-yml": "^
|
|
141
|
+
"eslint-plugin-yml": "^3.0.0",
|
|
142
142
|
"husky": "^9.1.7",
|
|
143
143
|
"jest": "^30.2.0",
|
|
144
144
|
"npm-check-updates": "^19.3.1",
|
|
145
145
|
"npm-run-all": "^4.1.5",
|
|
146
|
-
"prettier": "^3.
|
|
146
|
+
"prettier": "^3.8.0",
|
|
147
147
|
"release-it": "<=19.0.0",
|
|
148
148
|
"rimraf": "^6.1.2",
|
|
149
149
|
"ts-jest": "^29.4.6",
|
|
150
150
|
"ts-node": "^10.9.2",
|
|
151
151
|
"typescript": "^5.9.3",
|
|
152
|
-
"typescript-eslint": "^8.
|
|
153
|
-
"vitest": "^4.0.
|
|
152
|
+
"typescript-eslint": "^8.53.1",
|
|
153
|
+
"vitest": "^4.0.17"
|
|
154
154
|
},
|
|
155
155
|
"publishConfig": {
|
|
156
156
|
"access": "public"
|
package/tsconfig.nestjs.json
CHANGED
|
@@ -7,11 +7,10 @@
|
|
|
7
7
|
"baseUrl": "./",
|
|
8
8
|
"incremental": true,
|
|
9
9
|
"lib": ["ES2023"],
|
|
10
|
-
"module": "
|
|
11
|
-
"moduleResolution": "
|
|
10
|
+
"module": "nodenext",
|
|
11
|
+
"moduleResolution": "nodenext",
|
|
12
12
|
"outDir": "dist",
|
|
13
13
|
"removeComments": true,
|
|
14
|
-
"skipLibCheck": true,
|
|
15
14
|
"target": "ES2023"
|
|
16
15
|
}
|
|
17
16
|
}
|