Add tsconfig.strictNullChecks.json

Part of #60565

Adds a new `tsconfig.strictNullChecks.json` project that does not emit anything and is only used for enabling strict null checks on a subset of the vscode codebase.

Opt `iterator.ts` into strict null checking.

Fix our build scripts to properly handle `extends`
This commit is contained in:
Matt Bierner
2018-10-10 14:54:59 -07:00
parent 7e742e1f31
commit 104275cb9f
6 changed files with 102 additions and 62 deletions

View File

@@ -0,0 +1,14 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"noEmit": true,
"strictNullChecks": true
},
"include": [
"./typings",
"./vs/base/common/iterator.ts"
],
"exclude": [
"./typings/require-monaco.d.ts"
]
}