Skip to content

Commit

Permalink
fix: ts config path
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Musat authored and gabotechs committed Dec 24, 2022
1 parent fdecdae commit b8de99f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/js/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func MakeJsParser(entrypoint string) (*Parser, error) {
for len(searchPath) > 1 {
packageJsonPath := path.Join(searchPath, "package.json")
if utils.FileExists(packageJsonPath) {
tsConfigPath := path.Join(searchPath, "tsConfig.json")
tsConfigPath := path.Join(searchPath, "tsconfig.json")
if utils.FileExists(tsConfigPath) {
var err error
tsConfig, err = ParseTsConfig(tsConfigPath)
Expand Down

0 comments on commit b8de99f

Please sign in to comment.