DefinitelyTyped/types/conditional/tsconfig.json
Richard Wang e2324ab042 Add types for conditional (#41851)
* First draft

* Tweak spaces

* Add tests

* Expect void not undefined

* Expand callbacks, they can't be wrapped

* Fix test Compile error in typescript@3.6 but not in typescript@3.7

* Fix strict-export-declare-modifiers

* Try and retrigger build checks
2020-01-28 11:50:54 -08:00

24 lines
492 B
JSON

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