Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@file-services/typescript
Advanced tools
Helpers for creation of TypeScript hosts.
Install library in project:
npm i @file-services/typescript
/**
* Create an IBaseHost, which is actually three interfaces combined:
* - `ts.ParseConfigHost` - for parsing of `tsconfig.json` files
* - `ts.FormatDiagnosticsHost` - for formatting of `ts.Diagnostic` instances
* - `ts.ModuleResolutionHost` - for resolution of imports using TypeScript's built-in mechanism
*
* @param fs the file system to use as host backend
*/
export function createBaseHost(fs: IFileSystemSync): IBaseHost;
/**
* Create a TypeScript `LanguageServiceHost` using provided file system.
*
* @param fs the file system used as host backend
* @param baseHost created using `createBaseHost()`
* @param fileNames list of absolute paths to `.ts/tsx` files included in this transpilation
* @param compilerOptions compilerOptions to use when transpiling or type checking
* @param defaultLibsDirectory absolute path to the directory that contains TypeScript's built-in `.d.ts` files
* `path.dirname(ts.getDefaultLibFilePath({}))` in node,
* or custom directory with `@file-services/memory`
* @param customTransformers optional custom transformers to apply during transpilation
*/
export function createLanguageServiceHost(
fs: IFileSystemSync,
baseHost: IBaseHost,
fileNames: string[],
compilerOptions: ts.CompilerOptions,
defaultLibsDirectory: string,
customTransformers?: ts.CustomTransformers,
): ts.LanguageServiceHost;
MIT
FAQs
Helpers for creation of TypeScript hosts
The npm package @file-services/typescript receives a total of 369 weekly downloads. As such, @file-services/typescript popularity was classified as not popular.
We found that @file-services/typescript demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.