DefinitelyTyped/types/sinon-test/tsconfig.json
Andrew Zammit be9dcd06bc
Integrate sinon with @sinonjs/fake-timers, with fixes (#43148)
* 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
2020-03-31 16:14:31 -07:00

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"
]
}