DefinitelyTyped/types/webpack-plugin-serve/tsconfig.json
Matheus Gonçalves da Silva a4e52c5eb1 Add type definitions to webpack-plugin-serve (#33948)
* feat(wps): add webpack-plugin-serve types

* fix export method

* fix declaration

* add strictFunctionTypes

* fix declaration problems

* remove redundant declare

* add correct level types

* export history api interfaces

* reuse koa-compress and koa-static

* fix padding
2019-03-25 09:34:48 -07:00

24 lines
501 B
JSON

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