File tree 6 files changed +13
-8
lines changed
6 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 3
3
This log documents significant changes for each release. This project follows
4
4
[ Semantic Versioning] ( http://semver.org/ ) .
5
5
6
+ ## [ 2.6.1] - 2020-09-22
7
+ ### Fixed
8
+ - Module not found errors with TypeScript when importing json files
9
+ inside module declaration (in an Angular project)
10
+
6
11
## [ 2.6.0] - 2020-09-01
7
12
### Added
8
13
Limited support for types (see README.md for details):
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ module.exports = {
7
7
* A hash of resource element paths (e.g. Observation.value) that are known
8
8
* to point to fields that are choice types.
9
9
*/
10
- choiceTypePaths : require ( './choiceTypePaths' ) ,
10
+ choiceTypePaths : require ( './choiceTypePaths.json ' ) ,
11
11
12
12
/**
13
13
* A hash from paths to the path for which their content is defined, e.g.
14
14
* Questionnaire.item.item -> Questionnaire.item.
15
15
*/
16
- pathsDefinedElsewhere : require ( './pathsDefinedElsewhere' )
16
+ pathsDefinedElsewhere : require ( './pathsDefinedElsewhere.json ' )
17
17
}
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ module.exports = {
7
7
* A hash of resource element paths (e.g. Observation.value) that are known
8
8
* to point to fiels that are choice types.
9
9
*/
10
- choiceTypePaths : require ( './choiceTypePaths' ) ,
10
+ choiceTypePaths : require ( './choiceTypePaths.json ' ) ,
11
11
12
12
/**
13
13
* A hash from paths to the path for which their content is defined, e.g.
14
14
* Questionnaire.item.item -> Questionnaire.item.
15
15
*/
16
- pathsDefinedElsewhere : require ( './pathsDefinedElsewhere' )
16
+ pathsDefinedElsewhere : require ( './pathsDefinedElsewhere.json ' )
17
17
}
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ module.exports = {
7
7
* A hash of resource element paths (e.g. Observation.value) that are known
8
8
* to point to fiels that are choice types.
9
9
*/
10
- choiceTypePaths : require ( './choiceTypePaths' ) ,
10
+ choiceTypePaths : require ( './choiceTypePaths.json ' ) ,
11
11
12
12
/**
13
13
* A hash from paths to the path for which their content is defined, e.g.
14
14
* Questionnaire.item.item -> Questionnaire.item.
15
15
*/
16
- pathsDefinedElsewhere : require ( './pathsDefinedElsewhere' )
16
+ pathsDefinedElsewhere : require ( './pathsDefinedElsewhere.json ' )
17
17
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " fhirpath" ,
3
- "version" : " 2.6.0 " ,
3
+ "version" : " 2.6.1 " ,
4
4
"description" : " A FHIRPath engine" ,
5
5
"main" : " src/fhirpath.js" ,
6
6
"dependencies" : {
You can’t perform that action at this time.
0 commit comments