Skip to content

Commit 3f9bc10

Browse files
committed
Set strict mode in a few extensions that already have strictNullChecks
1 parent 6bcfefe commit 3f9bc10

6 files changed

Lines changed: 10 additions & 11 deletions

File tree

extensions/grunt/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"es2016"
77
],
88
"outDir": "./out",
9-
"strictNullChecks": true,
109
"noImplicitAny": true,
1110
"noImplicitReturns": true,
1211
"noUnusedLocals": true,
13-
"noUnusedParameters": true
12+
"noUnusedParameters": true,
13+
"strict": true
1414
},
1515
"include": [
1616
"src/**/*"

extensions/gulp/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"es2016"
77
],
88
"outDir": "./out",
9-
"strictNullChecks": true,
109
"noImplicitAny": true,
1110
"noImplicitReturns": true,
1211
"noUnusedLocals": true,
13-
"noUnusedParameters": true
12+
"noUnusedParameters": true,
13+
"strict": true
1414
},
1515
"include": [
1616
"src/**/*"

extensions/jake/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"es2016"
77
],
88
"outDir": "./out",
9-
"strictNullChecks": true,
109
"noImplicitAny": true,
1110
"noImplicitReturns": true,
1211
"noUnusedLocals": true,
13-
"noUnusedParameters": true
12+
"noUnusedParameters": true,
13+
"strict": true
1414
},
1515
"include": [
1616
"src/**/*"

extensions/markdown/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
],
1010
"outDir": "./out",
1111
"sourceMap": true,
12-
"strictNullChecks": true,
1312
"noImplicitAny": true,
1413
"noImplicitReturns": true,
1514
"noUnusedLocals": true,
16-
"noUnusedParameters": true
15+
"noUnusedParameters": true,
16+
"strict": true
1717
},
1818
"include": [
1919
"src/**/*"

extensions/npm/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"es2016"
77
],
88
"outDir": "./out",
9-
"strictNullChecks": true,
109
"noImplicitAny": true,
1110
"noImplicitReturns": true,
1211
"noUnusedLocals": true,
13-
"noUnusedParameters": true
12+
"noUnusedParameters": true,
13+
"strict": true
1414
},
1515
"include": [
1616
"src/**/*"

extensions/typescript/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"es2015.promise"
88
],
99
"outDir": "./out",
10-
"strictNullChecks": true,
1110
"noImplicitAny": true,
1211
"noImplicitReturns": true,
1312
"noUnusedLocals": true,

0 commit comments

Comments
 (0)