New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@syncrona/typescript-plugin

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncrona/typescript-plugin

TypeScript plugin for SyncroNow AI

Source
npmnpm
Version
0.9.0
Version published
Weekly downloads
3
-91.43%
Maintainers
1
Weekly downloads
 
Created
Source

@syncrona/typescript-plugin

npm: not yet publishednodelicenseCITypeScript

Overview

This plugin allows you to run the TypeScript compiler on .ts files. Supports tsconfig.json files.

Installation

npm i -D @syncrona/typescript-plugin

Options

KeyTypeDefaultDescription
transpilebooleantrueWhether or not the contents of the typescript file should be transpiled. Useful if you want to use Babel to transpile instead but still want type checking
compilerOptionstypescript.CompilerOptionsnullSame as compilerOptions in a tsconfig.json file

Order of Configurations

  • Load from sync.config.js options.
  • Check for tsconfig.json file and and override any overlapping values.

Example Usage

This example takes .ts files and only type checks them.

//sync.config.js
module.exports={
  rules:{
    match:/\.ts$/,
    plugins:[
      name:"@syncrona/typescript-plugin",
      options:{
        transpile:false
      }
    ]
  }
};

FAQs

Package last updated on 03 Jul 2026

Related posts