Skip to content

Commit

Permalink
Merge pull request #28 from vegarringdal/master
Browse files Browse the repository at this point in the history
v 2.3.4
  • Loading branch information
vegarringdal authored Jul 4, 2017
2 parents 8fb34e9 + 444df2e commit 36f04b7
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 10 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ Simple helper to do typechecking
```npm install git://github.com/fuse-box/fuse-box-typechecker --save-dev```


### Note
This have been tested with
* "tslint": "^5.4.3",
* "typescript": "^2.4.1"

So this might not work with earlier version if typescript and tslint (tsLint 3 will fail, been tested).


### How to use
```javascript

Expand Down
1 change: 1 addition & 0 deletions dist/commonjs/checker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/checker.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/commonjs/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/index.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/commonjs/interfaces.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/interfaces.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/commonjs/worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/worker.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,22 @@
"declaration": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitUseStrict": true,
"noUnusedParameters": true,
"suppressImplicitAnyIndexErrors": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true,
"alwaysStrict": true,
"noImplicitThis": false,
"noUnusedLocals": true,
"allowUnreachableCode":false,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"preserveConstEnums":true,
"preserveConstEnums": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"lib": ["es2015","es2017", "dom"]
"lib": ["es2015", "es2017", "dom"]
},
"filesGlob": [
"./src/**/*.ts",
Expand All @@ -34,4 +36,4 @@
"atom": {
"rewriteTsconfig": false
}
}
}

0 comments on commit 36f04b7

Please sign in to comment.