Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@ts-morph/common

Package Overview
Dependencies
23
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ts-morph/common

Common functionality for ts-morph packages.


Version published
Weekly downloads
2.8M
increased by1.28%
Maintainers
1
Install size
12.5 MB
Created
Weekly downloads
 

Package description

What is @ts-morph/common?

@ts-morph/common is a library that provides common utilities and types for working with the TypeScript compiler API. It is part of the ts-morph project, which aims to make it easier to work with TypeScript AST (Abstract Syntax Tree) and perform code manipulations.

What are @ts-morph/common's main functionalities?

File System Operations

This feature allows you to create custom file system hosts to handle file operations. You can override methods like `readFileSync` and `writeFileSync` to provide custom implementations.

const { FileSystemHost } = require('@ts-morph/common');

class CustomFileSystemHost extends FileSystemHost {
  readFileSync(filePath) {
    // Custom implementation
  }

  writeFileSync(filePath, data) {
    // Custom implementation
  }
}

const fsHost = new CustomFileSystemHost();

Logging

This feature provides a logging utility that you can configure with different log levels and custom write functions. It helps in debugging and monitoring the operations performed by the library.

const { Logger } = require('@ts-morph/common');

const logger = new Logger({
  logLevel: 'info',
  write: (text) => console.log(text)
});

logger.info('This is an info message');

Compiler Options

This feature allows you to manage TypeScript compiler options in a structured way. You can set and get compiler options easily using the `CompilerOptionsContainer`.

const { CompilerOptionsContainer } = require('@ts-morph/common');

const compilerOptions = new CompilerOptionsContainer();
compilerOptions.set({
  target: 'ES6',
  module: 'commonjs'
});

console.log(compilerOptions.get());

Other packages similar to @ts-morph/common

Readme

Source

@ts-morph/common

Common functionality for ts-morph and @ts-morph/bootstrap.

Please do not depend on this library!

FAQs

Last updated on 08 Dec 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc