1.0.5 • Published 6 years ago

@cryptograph/typescript-tooling v1.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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"
		]
	}
}