2022-08-22 18:51:46 -06:00
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2022-10-06 19:30:55 -06:00
|
|
|
"skipLibCheck": true, //this is because fhirclient types.d.ts file includes reference to "http" (Node) library
|
2022-10-06 23:19:48 -06:00
|
|
|
//TODO open an upstream issue: Cannot find module 'http' or its corresponding type declarations.
|
|
|
|
|
2022-08-22 18:51:46 -06:00
|
|
|
"outDir": "./out-tsc/app",
|
|
|
|
"types": []
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"src/main.ts",
|
|
|
|
"src/polyfills.ts"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src/**/*.d.ts"
|
|
|
|
]
|
|
|
|
}
|