mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
22 lines
644 B
JSON
22 lines
644 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "ESNext",
|
|
"lib": ["dom", "esnext"],
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"strict": false, // should be enabled one lucky day
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false, // should be enabled one lucky day
|
|
"noUnusedParameters": false, // should be enabled one lucky day
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true // required by Sucrase
|
|
}
|
|
}
|