Skip to content

Commit 8e1a132

Browse files
committed
TypeScript: turn on noInplicitThis and alwaysStrict
Part of enabling string TypeScript: #37
1 parent 5005a87 commit 8e1a132

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tsconfig.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"outDir": "./dist",
77
"target": "es2017",
88
"sourceMap": true,
9-
"noImplicitAny": true
9+
"noImplicitAny": true,
10+
"noImplicitThis": true,
11+
"alwaysStrict": true
1012
},
1113
"include": [
1214
"./src/**/*"

0 commit comments

Comments
 (0)