DefinitelyTyped/types/serve-handler/tsconfig.json
Simon Hänisch 83d8c09ef5 add declaration for serve-handler (#37781)
* add declaration for serve-handler

* fix author link

* `export =` instead of `export default`

* fix indentation of tests file
2019-08-21 10:00:12 -07:00

25 lines
540 B
JSON

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