DefinitelyTyped/types/gulp/tsconfig.json
Giedrius Grabauskas 472244ccbf Types for gulp 4.0 (#16121)
* Update index.d.ts

* Rewrited types for gulp@4.0.

* Updated quotes

* Fixed tslint errors.

* Fixed some tslint error in test file.

* Implemented undertaker in gulp types.

* Removed Orchestrator import.

* Added backwards compatible type `TaskCallback`.

* Fixed `gulp-shell` tests compatibility with gulp@4 types.

* Fixed karma tests compatibility with gulp@4 types.

* Fixed gulp-rev-replace tests compatibility with gulp@4 types.

* Enabled `strictNullChecks` in `gulp` and `undertaker` types. Fixed task function.

* Implemented gulp.parallel for `karma` tests.

* Implemented gulp.parallel for `gulp-rev-replace` tests.

* Implemented gulp.parallel for `gulp-shell` tests.
2017-06-05 16:43:12 -07:00

25 lines
491 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"baseUrl": "../",
"typeRoots": [
"../"
],
"jsx": "react",
"types": [],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true
},
"files": [
"index.d.ts",
"test/index.ts"
]
}