This repository was archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrades to tslint@4 and corresponding plugins/rule definitions/tscon…
- Loading branch information
Dimitri Benin
committed
Dec 14, 2016
1 parent
b39d7fe
commit b6fbefe
Showing
7 changed files
with
1,421 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,5 +39,5 @@ node_modules | |
.idea | ||
*.iml | ||
|
||
# built atrifacts | ||
# built artifacts | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,37 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"allowSyntheticDefaultImports": false, | ||
"alwaysStrict": false, | ||
"baseUrl": "./src", | ||
"importHelpers": true, | ||
"emitDecoratorMetadata": false, | ||
"experimentalDecorators": false, | ||
"allowSyntheticDefaultImports": true, | ||
"sourceMap": true, | ||
"lib": [ | ||
"es6" | ||
], | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"noEmitHelpers": false, | ||
"strictNullChecks": false, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitAny": true, | ||
"suppressImplicitAnyIndexErrors": true, | ||
"baseUrl": "./src", | ||
"noImplicitReturns": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"paths": {}, | ||
"lib": [ | ||
"es6" | ||
] | ||
"pretty": true, | ||
"skipLibCheck": false, | ||
"sourceMap": true, | ||
"strictNullChecks": true, | ||
"suppressImplicitAnyIndexErrors": true, | ||
"target": "es5" | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
"dist" | ||
], | ||
"compileOnSave": false, | ||
"buildOnSave": false, | ||
"atom": { "rewriteTsconfig": false } | ||
"atom": { | ||
"rewriteTsconfig": false | ||
} | ||
} |
Oops, something went wrong.