We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daae774 commit 8ebdfb3Copy full SHA for 8ebdfb3
core-build/gulp-core-build/src/index.ts
@@ -53,6 +53,9 @@ const packageFolder: string = (builtPackage.directories && builtPackage.director
53
: '';
54
55
let _buildConfig: IBuildConfig = {
56
+ // gulp and rootPath are set to undefined here because they'll be defined in the initialize function below,
57
+ // but we don't want their types to be nullable because a task that uses StrictNullChecks should expect them
58
+ // to be defined without checking their values.
59
gulp: undefined as any, // tslint:disable-line:no-any
60
rootPath: undefined as any, // tslint:disable-line:no-any
61
packageFolder,
0 commit comments