BuildFeed/BuildFeed/tsconfig.json
BuildFeed Bot 8297676e65 Bunch of fixes and updates
Adjustments for gulp tasks
Typings moved to node rather than nuget
Increase Typescript strictness, fix warnings / errors
FR translation update
PL translation update
RTL styling fixes
Fix legacy version pages
Component updates
2018-03-10 16:09:34 +00:00

25 lines
970 B
JSON

{
"exclude": [
"node_modules",
"Scripts"
],
"compilerOptions": {
"target": "es6",
"module": "none",
/* Strict Type-Checking Options */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"strictNullChecks": true, /* Enable strict null checks. */
"noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
/* Additional Checks */
"noUnusedLocals": true, /* Report errors on unused locals. */
"noUnusedParameters": true, /* Report errors on unused parameters. */
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */
}
}