-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathgo.mod
More file actions
57 lines (52 loc) · 2.4 KB
/
go.mod
File metadata and controls
57 lines (52 loc) · 2.4 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
module github.com/typescript-eslint/tsgolint
go 1.26
replace (
github.com/microsoft/typescript-go/shim/ast => ./shim/ast
github.com/microsoft/typescript-go/shim/bundled => ./shim/bundled
github.com/microsoft/typescript-go/shim/checker => ./shim/checker
github.com/microsoft/typescript-go/shim/compiler => ./shim/compiler
github.com/microsoft/typescript-go/shim/core => ./shim/core
github.com/microsoft/typescript-go/shim/jsnum => ./shim/jsnum
github.com/microsoft/typescript-go/shim/lsp/lsproto => ./shim/lsp/lsproto
github.com/microsoft/typescript-go/shim/parser => ./shim/parser
github.com/microsoft/typescript-go/shim/project => ./shim/project
github.com/microsoft/typescript-go/shim/scanner => ./shim/scanner
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/osvfs => ./shim/vfs/osvfs
)
require (
github.com/microsoft/typescript-go/shim/ast v0.0.0
github.com/microsoft/typescript-go/shim/bundled v0.0.0
github.com/microsoft/typescript-go/shim/checker v0.0.0
github.com/microsoft/typescript-go/shim/compiler v0.0.0
github.com/microsoft/typescript-go/shim/core v0.0.0
github.com/microsoft/typescript-go/shim/jsnum v0.0.0
github.com/microsoft/typescript-go/shim/parser v0.0.0
github.com/microsoft/typescript-go/shim/project v0.0.0
github.com/microsoft/typescript-go/shim/scanner v0.0.0
github.com/microsoft/typescript-go/shim/tsoptions v0.0.0
github.com/microsoft/typescript-go/shim/tspath v0.0.0
github.com/microsoft/typescript-go/shim/vfs v0.0.0
github.com/microsoft/typescript-go/shim/vfs/cachedvfs v0.0.0
github.com/microsoft/typescript-go/shim/vfs/osvfs v0.0.0
golang.org/x/sys v0.43.0
golang.org/x/tools v0.44.0
gotest.tools/v3 v3.5.2
)
require (
github.com/google/go-cmp v0.7.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/mackerelio/go-osstat v0.2.7 // indirect
github.com/zeebo/xxh3 v1.1.0 // indirect
golang.org/x/mod v0.35.0 // indirect
golang.org/x/sync v0.20.0 // indirect
)
require (
github.com/dlclark/regexp2/v2 v2.0.0
github.com/go-json-experiment/json v0.0.0-20260430182902-b6187a392ed4
github.com/microsoft/typescript-go v0.0.0-20260430214321-25963e42b8a5 // indirect
golang.org/x/text v0.36.0
)