DefinitelyTyped/types/pumpify/tsconfig.json
Justin Beckwith 8d24d22453 add d.ts for pumpify (#25049)
* add d.ts for pumpify

* pr feedback
2018-04-18 12:56:48 -07:00

25 lines
534 B
JSON

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