forked from Effect-TS/tsgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
107 lines (101 loc) · 6.01 KB
/
Copy pathgo.mod
File metadata and controls
107 lines (101 loc) · 6.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
module github.com/effect-ts/tsgo
go 1.26
replace (
github.com/microsoft/typescript-go => ./typescript-go
github.com/microsoft/typescript-go/shim/api => ./shim/api
github.com/microsoft/typescript-go/shim/ast => ./shim/ast
github.com/microsoft/typescript-go/shim/astnav => ./shim/astnav
github.com/microsoft/typescript-go/shim/bundled => ./shim/bundled
github.com/microsoft/typescript-go/shim/checker => ./shim/checker
github.com/microsoft/typescript-go/shim/collections => ./shim/collections
github.com/microsoft/typescript-go/shim/compiler => ./shim/compiler
github.com/microsoft/typescript-go/shim/core => ./shim/core
github.com/microsoft/typescript-go/shim/diagnostics => ./shim/diagnostics
github.com/microsoft/typescript-go/shim/execute/tsc => ./shim/execute/tsc
github.com/microsoft/typescript-go/shim/format => ./shim/format
github.com/microsoft/typescript-go/shim/fourslash => ./shim/fourslash
github.com/microsoft/typescript-go/shim/ls => ./shim/ls
github.com/microsoft/typescript-go/shim/ls/autoimport => ./shim/ls/autoimport
github.com/microsoft/typescript-go/shim/ls/change => ./shim/ls/change
github.com/microsoft/typescript-go/shim/ls/lsconv => ./shim/ls/lsconv
github.com/microsoft/typescript-go/shim/ls/lsutil => ./shim/ls/lsutil
github.com/microsoft/typescript-go/shim/lsp => ./shim/lsp
github.com/microsoft/typescript-go/shim/lsp/lsproto => ./shim/lsp/lsproto
github.com/microsoft/typescript-go/shim/module => ./shim/module
github.com/microsoft/typescript-go/shim/modulespecifiers => ./shim/modulespecifiers
github.com/microsoft/typescript-go/shim/packagejson => ./shim/packagejson
github.com/microsoft/typescript-go/shim/parser => ./shim/parser
github.com/microsoft/typescript-go/shim/project => ./shim/project
github.com/microsoft/typescript-go/shim/project/logging => ./shim/project/logging
github.com/microsoft/typescript-go/shim/repo => ./shim/repo
github.com/microsoft/typescript-go/shim/scanner => ./shim/scanner
github.com/microsoft/typescript-go/shim/sourcemap => ./shim/sourcemap
github.com/microsoft/typescript-go/shim/testrunner => ./shim/testrunner
github.com/microsoft/typescript-go/shim/testutil => ./shim/testutil
github.com/microsoft/typescript-go/shim/testutil/baseline => ./shim/testutil/baseline
github.com/microsoft/typescript-go/shim/testutil/harnessutil => ./shim/testutil/harnessutil
github.com/microsoft/typescript-go/shim/testutil/tsbaseline => ./shim/testutil/tsbaseline
github.com/microsoft/typescript-go/shim/tsoptions => ./shim/tsoptions
github.com/microsoft/typescript-go/shim/tspath => ./shim/tspath
github.com/microsoft/typescript-go/shim/vfs => ./shim/vfs
github.com/microsoft/typescript-go/shim/vfs/cachedvfs => ./shim/vfs/cachedvfs
github.com/microsoft/typescript-go/shim/vfs/iovfs => ./shim/vfs/iovfs
github.com/microsoft/typescript-go/shim/vfs/osvfs => ./shim/vfs/osvfs
github.com/microsoft/typescript-go/shim/vfs/vfstest => ./shim/vfs/vfstest
)
require (
github.com/effect-ts/tsgo/etscore v0.0.0
github.com/microsoft/typescript-go/shim/api v0.0.0
github.com/microsoft/typescript-go/shim/ast v0.0.0
github.com/microsoft/typescript-go/shim/astnav v0.0.0
github.com/microsoft/typescript-go/shim/bundled v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/checker v0.0.0
github.com/microsoft/typescript-go/shim/compiler v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/core v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/diagnostics v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/execute/tsc v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/fourslash v0.0.0
github.com/microsoft/typescript-go/shim/ls v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/ls/autoimport v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/ls/change v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/ls/lsconv v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/ls/lsutil v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/lsp/lsproto v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/module v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/modulespecifiers v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/packagejson v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/parser v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/project/logging v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/scanner v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/sourcemap v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/testutil/baseline v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/testutil/harnessutil v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/tsoptions v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/tspath v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/vfs v0.0.0-00010101000000-000000000000
github.com/microsoft/typescript-go/shim/vfs/vfstest v0.0.0-00010101000000-000000000000
)
require (
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/microsoft/typescript-go v0.0.0 // indirect
github.com/microsoft/typescript-go/shim/collections v0.0.0 // indirect
github.com/peter-evans/patience v0.3.0 // indirect
github.com/zeebo/xxh3 v1.1.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/text v0.34.0 // indirect
gotest.tools/v3 v3.5.2 // indirect
)
replace github.com/effect-ts/tsgo/etscore => ./etscore
ignore (
./.repos
./.specs
./_packages
./_tools
./node_modules
./testdata/tests
)