@jspsych/config 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/tsconfig.contrib.json +1 -1
- package/tsconfig.core.json +0 -2
- package/tsconfig.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @jspsych/config
|
|
2
2
|
|
|
3
|
+
## 3.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3401](https://github.com/jspsych/jsPsych/pull/3401) [`db7bcf82`](https://github.com/jspsych/jsPsych/commit/db7bcf82f6491ac8d02c7c4cf89e42d4ddcde1d9) Thanks [@jadeddelta](https://github.com/jadeddelta)! - allow JSON resolution in contrib repository for usage of package.json in versioning
|
|
8
|
+
|
|
3
9
|
## 3.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
package/package.json
CHANGED
package/tsconfig.contrib.json
CHANGED
package/tsconfig.core.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"skipLibCheck": true,
|
|
17
17
|
"forceConsistentCasingInFileNames": true,
|
|
18
18
|
"noEmit": true,
|
|
19
|
-
"isolatedModules": true // required by Sucrase
|
|
19
|
+
"isolatedModules": true, // required by Sucrase
|
|
20
|
+
"resolveJsonModule": true, // required for automatic package versioning and needed for transitive imports of jspsych
|
|
20
21
|
}
|
|
21
22
|
}
|