mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* 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
20 lines
363 B
JSON
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"
|
|
]
|
|
}
|