Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
{
	// TSConfig reference: https://www.typescriptlang.org/tsconfig
	// Configured based on https://stackoverflow.com/a/57607634/1131246
	"compilerOptions": {
		// Strict checks
		"strict": true,
		// Project options
		"declaration": true,
		"lib": [ "ES2018" ],
		"module": "CommonJS",
		"outDir": "dist",
		"rootDir": "src",
		"target": "ES2018",
		// Module resolution
		"esModuleInterop": true,
		// Advanced
		"forceConsistentCasingInFileNames": true
	}
}