mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-11 16:18:11 +00:00
15 lines
478 B
JSON
15 lines
478 B
JSON
{
|
|
// tsconfig for the jsPsych monorepo
|
|
"extends": "@jspsych/config/tsconfig.json",
|
|
"compilerOptions": {
|
|
// map package imports directly to their source files
|
|
"paths": {
|
|
"jspsych": ["../jspsych/src"],
|
|
"@jspsych/*": ["../*/src"]
|
|
},
|
|
// allow resolving json modules in tests (needed for transitive imports of jspsych in tests;
|
|
// the jspsych package itself uses https://stackoverflow.com/a/61426303 instead)
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|