DefinitelyTyped/types/gulp-terser/tsconfig.json
Jeroen Claassens e253d335c1 Added typings for gulp-terser (#35904)
Not much going on here since it imports all options from terser. Based
it losely on the pre-existing gulp-uglify and
webpack-terser-plugin typings as reference points

Signed-off-by: Jeroen Claassens <support@favware.tech>
2019-06-04 18:16:20 -07:00

24 lines
492 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"strictFunctionTypes": true
},
"files": [
"index.d.ts",
"gulp-terser-tests.ts"
]
}