f37a49e398
also: - save history simultaneously with question data - update squiggle - minor refactorings
32 lines
588 B
JSON
32 lines
588 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "CommonJS",
|
|
"outDir": "out",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|