@servicenow/sdk - v4.4.1
    Preparing search index...

    Interface ResolvedModule

    Represents the result of module resolution. Module resolution will pick up tsx/jsx/js files even if '--jsx' and '--allowJs' are turned off. The Program will then filter results based on these flags.

    Prefer to return a ResolvedModuleFull so that the file type does not have to be inferred.

    interface ResolvedModule {
        isExternalLibraryImport?: boolean;
        resolvedFileName: string;
        resolvedUsingTsExtension?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    isExternalLibraryImport?: boolean

    True if resolvedFileName comes from node_modules.

    resolvedFileName: string

    Path of the file the module was resolved to.

    resolvedUsingTsExtension?: boolean

    True if the original module reference used a .ts extension to refer directly to a .ts file, which should produce an error during checking if emit is enabled.