Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@cryptograph/typescript-tooling

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cryptograph/typescript-tooling

This package helps to keep all of the Typescript configuration and tooling synced up between seperate CryptoGraph projects.

Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
9
12.5%
Maintainers
1
Weekly downloads
 
Created
Source

Typescript Tooling

This package helps keep all Typescript configuration and tooling synced up between seperate CryptoGraph projects.

The postinstall script updates your package.json with all of the required devDependencies and ensures you have a tsconfig.json and a tslint.json which extend the ones from this package.

Here's what that looks like...

tsconfig.json

{
	"extends": "./node_modules/@cryptograph/typescript-tooling/tsconfig",

	// You can add more options and overwrites...
	"compilerOptions": {
		"outDir": "build"
	}
}

tslint.json

{
	"extends": "node_modules/@cryptograph/typescript-tooling/tslint.json",

	// You can add more options and overwrites...
	"rules": {
		"no-submodule-imports": [
			true,
			"graphql-voyager/middleware"
		]
	}
}

Keywords

typescript

FAQs

Package last updated on 11 Feb 2018

Did you know?

Socket

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