@ttsc/paths 0.5.0 → 0.6.0-dev.20250501

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 -1
  2. package/go.mod +1 -1
  3. package/package.json +1 -4
package/README.md CHANGED
@@ -59,7 +59,7 @@ No separate plugin options are required. `@ttsc/paths` reads the same `compilerO
59
59
  "outDir": "dist",
60
60
  "plugins": [
61
61
  // Keep lint first.
62
- { "transform": "@ttsc/lint", "rules": { "no-var": "error" } },
62
+ { "transform": "@ttsc/lint", "config": { "no-var": "error" } },
63
63
 
64
64
  // Output plugins run after emit, in order.
65
65
  { "transform": "@ttsc/banner", "banner": "/*! @license MIT */" },
package/go.mod CHANGED
@@ -18,7 +18,7 @@ require (
18
18
  require (
19
19
  github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
20
20
  github.com/klauspost/cpuid/v2 v2.2.10 // indirect
21
- github.com/microsoft/typescript-go v0.0.0-20260428010401-3499951dbc49 // indirect
21
+ github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 // indirect
22
22
  github.com/zeebo/xxh3 v1.1.0 // indirect
23
23
  golang.org/x/sync v0.20.0 // indirect
24
24
  golang.org/x/sys v0.42.0 // indirect
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttsc/paths",
3
- "version": "0.5.0",
3
+ "version": "0.6.0-dev.20250501",
4
4
  "description": "First-party ttsc plugin that rewrites emitted module specifiers from tsconfig paths.",
5
5
  "main": "src/index.cjs",
6
6
  "exports": {
@@ -19,9 +19,6 @@
19
19
  "go.mod",
20
20
  "plugin"
21
21
  ],
22
- "peerDependencies": {
23
- "ttsc": "^0.5.0-dev.20260429"
24
- },
25
22
  "repository": {
26
23
  "type": "git",
27
24
  "url": "https://github.com/samchon/ttsc"