DefinitelyTyped/types/terser-webpack-plugin/tsconfig.json
Daniel Schopf 8085094f30 Add terser-webpack-plugin (#31863)
* Added terser plugin typings

* add webpack chunk typing

* added 'ExtractCommentOptions' instead of just 'object'
2019-01-04 08:27:19 -08:00

24 lines
502 B
JSON

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