Add "strict": true to tsconfig.json (#994)

- Remove process.browser
This commit is contained in:
Elliot Lee
2019-04-11 15:48:23 -07:00
committed by GitHub
parent 1abcef73a0
commit 50fc36ec3e
40 changed files with 76 additions and 74 deletions

View File

@@ -12,15 +12,14 @@
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"removeComments": true,
"strict": true /* Enable all strict type-checking options. */,
"preserveConstEnums": false,
"suppressImplicitAnyIndexErrors": false,
"declaration": true,
"sourceMap": true,
"skipLibCheck": true
"sourceMap": true
},
"include": [
"custom_typings/**/*.ts",
"src/**/*.ts"
]
}