Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extern/typescript-go
Submodule typescript-go updated 51 files
+3 −3 .github/workflows/ci.yml
+1 −1 README.md
+1 −5 internal/api/session.go
+1 −1 internal/checker/checker.go
+4 −0 internal/checker/exports.go
+2 −6 internal/checker/grammarchecks.go
+1 −1 internal/checker/pseudotypenodebuilder.go
+1 −4 internal/checker/relater.go
+3 −6 internal/compiler/emitter.go
+0 −5 internal/compiler/program.go
+0 −20 internal/core/context.go
+0 −2 internal/execute/tsctests/tsc_test.go
+24 −0 internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParensParamOnly_test.go
+22 −0 internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParens_test.go
+19 −0 internal/fourslash/tests/quickInfoDefaultTypeParameter1_test.go
+44 −0 internal/fourslash/tests/statedeclarationmaps_test.go
+17 −0 internal/ls/change/tracker.go
+6 −0 internal/ls/codeactions_fixmissingtypeannotation.go
+5 −0 internal/ls/hover.go
+28 −11 internal/ls/lsconv/converters.go
+4 −3 internal/ls/source_map.go
+58 −16 internal/lsp/lsproto/_generate/generate.mts
+226 −161 internal/lsp/lsproto/lsp_generated.go
+3 −3 internal/lsp/server.go
+119 −394 internal/project/checkerpool.go
+0 −1,193 internal/project/checkerpool_test.go
+10 −6 internal/project/project.go
+1 −5 internal/project/projectcollectionbuilder.go
+1 −1 internal/project/session.go
+0 −6 internal/project/snapshot.go
+20 −3 internal/sourcemap/generator.go
+8 −2 internal/transformers/declarations/transform.go
+1 −1 testdata/baselines/reference/compiler/jsdocCommentDefaultExport(module=commonjs).js
+1 −1 testdata/baselines/reference/compiler/jsdocCommentDefaultExport(module=esnext).js
+21 −0 testdata/baselines/reference/fourslash/goToDefinition/declarationMapsNonMonotonicMappings.baseline.jsonc
+3 −3 testdata/baselines/reference/submodule/compiler/dynamicImportsDeclaration.js
+3 −3 testdata/baselines/reference/submodule/compiler/modulePreserve4.js
+1 −1 testdata/baselines/reference/submodule/compiler/nodeNextCjsNamespaceImportDefault2.js
+7 −1 testdata/baselines/reference/submodule/conformance/instantiationExpressions.errors.txt
+0 −40 testdata/baselines/reference/submodule/conformance/instantiationExpressions.errors.txt.diff
+2 −2 testdata/baselines/reference/submodule/conformance/jsDeclarationsDefault(target=es2015).js
+4 −4 testdata/baselines/reference/submodule/conformance/privateNameMethodClassExpression.errors.txt
+4 −4 testdata/baselines/reference/submodule/conformance/privateNameMethodClassExpression.errors.txt.diff
+3 −3 testdata/baselines/reference/submoduleAccepted/compiler/dynamicImportsDeclaration.js.diff
+3 −3 testdata/baselines/reference/submoduleAccepted/compiler/modulePreserve4.js.diff
+1 −1 testdata/baselines/reference/submoduleAccepted/compiler/nodeNextCjsNamespaceImportDefault2.js.diff
+2 −2 testdata/baselines/reference/submoduleAccepted/conformance/jsDeclarationsDefault(target=es2015).js.diff
+5 −5 ...lines/reference/tsc/composite/synthetic-jsx-import-of-ESM-module-from-CJS-module-no-crash-no-jsx-element.js
+54 −32 ...cremental/change-to-type-that-gets-used-as-global-through-export-in-another-file-through-indirect-import.js
+50 −31 ...selines/reference/tsc/incremental/change-to-type-that-gets-used-as-global-through-export-in-another-file.js
+6 −0 testdata/submoduleAccepted.txt
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ require (
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 // indirect
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 // indirect
github.com/spf13/pflag v1.0.9 // indirect
github.com/zeebo/xxh3 v1.1.0 // indirect
golang.org/x/mod v0.34.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion shim/ast/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/ast

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/ast/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
Expand Down
2 changes: 1 addition & 1 deletion shim/bundled/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/bundled

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/bundled/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 h1:vymEbVw
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg=
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
Expand Down
2 changes: 1 addition & 1 deletion shim/checker/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/checker

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/checker/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
Expand Down
2 changes: 1 addition & 1 deletion shim/compiler/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/compiler

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/compiler/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
Expand Down
2 changes: 1 addition & 1 deletion shim/core/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/core

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/core/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 h1:vymEbVw
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg=
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q=
Expand Down
8 changes: 0 additions & 8 deletions shim/core/shim.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion shim/diagnosticwriter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/diagnosticwriter

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/diagnosticwriter/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
Expand Down
2 changes: 1 addition & 1 deletion shim/incremental/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/incremental

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/incremental/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
Expand Down
2 changes: 1 addition & 1 deletion shim/parser/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/parser

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/parser/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
Expand Down
2 changes: 1 addition & 1 deletion shim/scanner/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/scanner

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/scanner/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
Expand Down
2 changes: 1 addition & 1 deletion shim/tsoptions/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/microsoft/typescript-go/shim/tsoptions

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require (
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
Expand Down
4 changes: 2 additions & 2 deletions shim/tsoptions/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
Expand Down
2 changes: 1 addition & 1 deletion shim/tspath/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/microsoft/typescript-go/shim/tspath

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2
4 changes: 2 additions & 2 deletions shim/tspath/go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q=
gotest.tools/v3 v3.5.2/go.mod h1:LtdLGcnqToBH83WByAAi/wiwSFCArdFIUV/xxN4pcjA=
2 changes: 1 addition & 1 deletion shim/vfs/cachedvfs/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module github.com/microsoft/typescript-go/shim/vfs/cachedvfs

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2

require github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
4 changes: 2 additions & 2 deletions shim/vfs/cachedvfs/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 h1:vymEbVw
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg=
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5 h1:ZW0oPaXTict5SP/TYGTBF/kIyC30JcTLDNzVLCbHo9Q=
github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2 h1:aQQQPKYf6rc4TJlEIgnM5R/kG+RNytrXFudCOx+jOP8=
github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2/go.mod h1:eE2mO7PBRpeR8gWgxwsZq1LOW4tsgIF6zd0iQ5TbsJU=
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
Expand Down
2 changes: 1 addition & 1 deletion shim/vfs/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/microsoft/typescript-go/shim/vfs

go 1.26

require github.com/microsoft/typescript-go v0.0.0-20260416045940-cc9b3e67b8d5
require github.com/microsoft/typescript-go v0.0.0-20260416234220-83b8d2aa23b2
Loading