Files
DefinitelyTyped/types/fhir-kit-client/tsconfig.json
Matthew Morrissette 6bcf6bab27 Add types for "fhir-kit-client" module (#36046)
* Add types for "fhir-kit-client" module

* Add specialized method types

* Refactoring "fhir-kit-client" to have single export and no namespace

* Convert to exclude type for custom resources

* Fix "type" response unions

* Add missing tests

* Further define fhir-kit-client to match with all custom resource types

* Add support for OperationOutcome for all operations
2019-06-13 20:24:48 -07:00

27 lines
600 B
JSON

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