mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-08 01:42:45 +00:00
* fix(sinonjs__fake-timers): refactor as ambient module, higher arity callbacks * feat!(sinon): sinon abstracted timers to @sinonjs/fake-timers so use that package to avoid interface discrepancies, add async variant tests, bump to 9.0 * chore(sinon): add module path map to scoped sinon dependency * chore(sinonjs__fake-timers): revert ambient module declaration, rely on type inference in tests * chore(sinon): rely on type inference in async clock tests
29 lines
612 B
JSON
29 lines
612 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"paths": {
|
|
"@sinonjs/fake-timers": [
|
|
"sinonjs__fake-timers"
|
|
]
|
|
},
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"sinon-test-tests.ts"
|
|
]
|
|
}
|