Comparing version 1.0.0 to 1.1.0
@@ -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)), |
{ | ||
"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 @@ |
50707
490
138
7