Skip to content

Commit 5fee434

Browse files
authored
Merge pull request #195 from typed-ember/update-tsconfig-blueprint-strictness
Max (possible) strictness in the generated tsconfig.json.
2 parents edda003 + 693362d commit 5fee434

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

blueprints/ember-cli-typescript/files/tsconfig.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@
44
"allowJs": true,
55
"moduleResolution": "node",
66
"allowSyntheticDefaultImports": true,
7+
"noImplicitAny": true,
78
"noImplicitThis": true,
9+
"alwaysStrict": true,
10+
"strictNullChecks": true,
11+
"strictPropertyInitialization": true,
12+
"noFallthroughCasesInSwitch": true,
13+
"noUnusedLocals": true,
14+
"noUnusedParameters": true,
15+
"noImplicitReturns": true,
816
"noEmitOnError": false,
917
"noEmit": true,
1018
"inlineSourceMap": true,

0 commit comments

Comments
 (0)