DefinitelyTyped/types/function-bind/tsconfig.json
ExE Boss 254fd7c1bb feat: Add function‑bind (#39337)
* feat: Add `function‑bind`

* fix(function‑bind): Separate <TS3.2 and TS3.3+ type defintions

* chore: `tsconfig.json` now allows only `index.d.ts` and tests
2019-12-03 10:59:58 -08:00

20 lines
363 B
JSON

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