Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

csproj2ts

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csproj2ts - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

4

csproj2ts.d.ts

@@ -0,1 +1,2 @@

import { Promise } from 'es6-promise';
declare namespace csproj2ts {

@@ -41,2 +42,3 @@ const DEFAULT_TYPESCRIPT_VERSION = "2.5.3";

ExperimentalDecorators?: boolean;
ESModuleInterop?: boolean;
ForceConsistentCasingInFileNames?: boolean;

@@ -80,3 +82,5 @@ GeneratesDeclarations?: boolean;

Strict?: boolean;
StrictFunctionTypes?: boolean;
StrictNullChecks?: boolean;
StrictPropertyInitialization?: boolean;
StripInternal?: boolean;

@@ -83,0 +87,0 @@ SuppressExcessPropertyErrors?: boolean;

@@ -124,2 +124,3 @@ "use strict";

EmitDecoratorMetadata: cboolean(getTSSetting(project, "EmitDecoratorMetadata", projectActiveConfig, projectActivePlat, undefined)),
ESModuleInterop: cboolean(getTSSetting(project, "ESModuleInterop", projectActiveConfig, projectActivePlat, undefined)),
ExperimentalAsyncFunctions: cboolean(getTSSetting(project, "ExperimentalAsyncFunctions", projectActiveConfig, projectActivePlat, undefined)),

@@ -164,3 +165,6 @@ ExperimentalDecorators: cboolean(getTSSetting(project, "ExperimentalDecorators", projectActiveConfig, projectActivePlat, undefined)),

SourceRoot: getTSSetting(project, "SourceRoot", projectActiveConfig, projectActivePlat, undefined),
Strict: cboolean(getTSSetting(project, "Strict", projectActiveConfig, projectActivePlat, undefined)),
StrictFunctionTypes: cboolean(getTSSetting(project, "StrictFunctionTypes", projectActiveConfig, projectActivePlat, undefined)),
StrictNullChecks: cboolean(getTSSetting(project, "StrictNullChecks", projectActiveConfig, projectActivePlat, undefined)),
StrictPropertyInitialization: cboolean(getTSSetting(project, "StrictPropertyInitialization", projectActiveConfig, projectActivePlat, undefined)),
SuppressImplicitAnyIndexErrors: cboolean(getTSSetting(project, "SuppressImplicitAnyIndexErrors", projectActiveConfig, projectActivePlat, undefined)),

@@ -167,0 +171,0 @@ SuppressExcessPropertyErrors: cboolean(getTSSetting(project, "SuppressExcessPropertyErrors", projectActiveConfig, projectActivePlat, undefined)),

2

package.json
{
"name": "csproj2ts",
"version": "1.0.0",
"version": "1.1.0",
"description": "Library to parse TypeScript config info from a Visual Studio Project file",

@@ -5,0 +5,0 @@ "main": "csproj2ts.js",

@@ -7,3 +7,3 @@ # csproj2ts

Tested with latest project configuration settings in TypeScript 2.5.3.
Tested with latest project configuration settings in TypeScript 2.7.

@@ -45,2 +45,9 @@ ## Install

## Publishing:
* Ensure `grunt test` comes back clean.
* Update the `package.json` with the new version number.
* Merge work to `master` on GitHub.
* Run `npm publish`.
### Quickstart for debugging with Node Inspector

@@ -47,0 +54,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc