mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
14 lines
384 B
JSON
14 lines
384 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)
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|