typescript

package
v0.15.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 14, 2026 License: AGPL-3.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsTestFile

func IsTestFile(filePath string) bool

IsTestFile reports whether the given TypeScript/JavaScript path is a test file.

func ResolveTypeScriptImportPath

func ResolveTypeScriptImportPath(sourceFile, importPath string, suppliedFiles map[string]bool) []string

ResolveTypeScriptImportPath resolves a TypeScript import path to possible file paths

func ResolveTypeScriptProjectImports

func ResolveTypeScriptProjectImports(
	absPath string,
	filePath string,
	ext string,
	suppliedFiles map[string]bool,
	contentReader vcs.ContentReader,
) ([]string, error)

Types

type ExternalImport

type ExternalImport struct {
	// contains filtered or unexported fields
}

ExternalImport represents an external npm package import

func (ExternalImport) IsTypeOnly

func (e ExternalImport) IsTypeOnly() bool

func (ExternalImport) Path

func (e ExternalImport) Path() string

type InternalImport

type InternalImport struct {
	// contains filtered or unexported fields
}

InternalImport represents an internal project file import (./, ../, @/)

func (InternalImport) IsTypeOnly

func (i InternalImport) IsTypeOnly() bool

func (InternalImport) Path

func (i InternalImport) Path() string

type Module

type Module struct{}

func (Module) Extensions

func (Module) Extensions() []string

func (Module) IsTestFile

func (Module) IsTestFile(filePath string, _ vcs.ContentReader) bool

func (Module) Maturity

func (Module) Maturity() moduleapi.MaturityLevel

func (Module) Name

func (Module) Name() string

func (Module) NewResolver

func (Module) NewResolver(ctx *moduleapi.Context, contentReader vcs.ContentReader) moduleapi.Resolver

type NodeBuiltinImport

type NodeBuiltinImport struct {
	// contains filtered or unexported fields
}

NodeBuiltinImport represents a Node.js built-in module import (fs, path, http, node:fs)

func (NodeBuiltinImport) IsTypeOnly

func (n NodeBuiltinImport) IsTypeOnly() bool

func (NodeBuiltinImport) Path

func (n NodeBuiltinImport) Path() string

type TypeScriptImport

type TypeScriptImport interface {
	Path() string
	IsTypeOnly() bool
}

TypeScriptImport represents an import in a TypeScript/TSX file

func ParseTypeScriptImports

func ParseTypeScriptImports(sourceCode []byte, isTSX bool) ([]TypeScriptImport, error)

ParseTypeScriptImports parses TypeScript source code and extracts imports

func TypeScriptImports

func TypeScriptImports(filePath string) ([]TypeScriptImport, error)

TypeScriptImports parses a TypeScript/TSX file and returns its imports

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL