mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
* 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
27 lines
600 B
JSON
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"
|
|
]
|
|
}
|