@jterrazz/typescript 3.0.0 → 3.1.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.
Files changed (2) hide show
  1. package/README.md +2 -4
  2. package/package.json +20 -21
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
- # @jterrazz/typescript
1
+ # Package Typescript
2
2
 
3
- > Ready-to-use TypeScript configurations and build tools for modern projects.
4
-
5
- A simple package that provides TypeScript configurations for different project types and fast build commands using SWC.
3
+ Drop-in tsconfig presets for consistent builds.
6
4
 
7
5
  ## Installation
8
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jterrazz/typescript",
3
3
  "author": "Jean-Baptiste Terrazzoni <contact@jterrazz.com>",
4
- "version": "3.0.0",
4
+ "version": "3.1.0",
5
5
  "files": [
6
6
  "tsconfig",
7
7
  "bin"
@@ -12,35 +12,34 @@
12
12
  "ts-dev": "bin/ts-dev.sh"
13
13
  },
14
14
  "scripts": {
15
- "lint": "prettier --check .",
15
+ "lint": "biome check",
16
16
  "test": "# no test script",
17
17
  "build": "# no build script"
18
18
  },
19
19
  "devDependencies": {
20
- "@jterrazz/quality": "^2.2.6"
20
+ "@jterrazz/quality": "^5.0.1"
21
21
  },
22
22
  "dependencies": {
23
- "@swc/cli": "^0.7.7",
24
- "@swc/core": "1.11.29",
25
- "@types/node": "22.14.1",
26
- "nodemon": "3.1.10",
27
- "rollup": "4.41.1",
23
+ "@swc/cli": "^0.7.9",
24
+ "@swc/core": "1.15.3",
25
+ "nodemon": "3.1.11",
26
+ "rollup": "4.53.3",
28
27
  "tsconfig-to-swcconfig": "2.8.1",
29
- "typescript": "5.8.3"
28
+ "typescript": "5.9.3"
30
29
  },
31
30
  "optionalDependencies": {
32
- "@swc/core-linux-arm64-gnu": "1.11.29",
33
- "@swc/core-linux-x64-gnu": "1.11.29",
34
- "@swc/core-linux-x64-musl": "1.11.29",
35
- "@swc/core-darwin-x64": "1.11.29",
36
- "@swc/core-darwin-arm64": "1.11.29",
37
- "@swc/core-win32-x64-msvc": "1.11.29",
38
- "@rollup/rollup-linux-arm64-gnu": "4.41.1",
39
- "@rollup/rollup-linux-x64-gnu": "4.41.1",
40
- "@rollup/rollup-linux-x64-musl": "4.41.1",
41
- "@rollup/rollup-darwin-x64": "4.41.1",
42
- "@rollup/rollup-darwin-arm64": "4.41.1",
43
- "@rollup/rollup-win32-x64-msvc": "4.41.1"
31
+ "@swc/core-linux-arm64-gnu": "1.15.3",
32
+ "@swc/core-linux-x64-gnu": "1.15.3",
33
+ "@swc/core-linux-x64-musl": "1.15.3",
34
+ "@swc/core-darwin-x64": "1.15.3",
35
+ "@swc/core-darwin-arm64": "1.15.3",
36
+ "@swc/core-win32-x64-msvc": "1.15.3",
37
+ "@rollup/rollup-linux-arm64-gnu": "4.53.3",
38
+ "@rollup/rollup-linux-x64-gnu": "4.53.3",
39
+ "@rollup/rollup-linux-x64-musl": "4.53.3",
40
+ "@rollup/rollup-darwin-x64": "4.53.3",
41
+ "@rollup/rollup-darwin-arm64": "4.53.3",
42
+ "@rollup/rollup-win32-x64-msvc": "4.53.3"
44
43
  },
45
44
  "publishConfig": {
46
45
  "registry": "https://registry.npmjs.org/"