Skip to content

Commit

Permalink
fix: attempt to fix things
Browse files Browse the repository at this point in the history
  • Loading branch information
kantord committed Feb 19, 2021
1 parent 321b58b commit 8b81147
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/ShortInputChallenge.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import InputFieldWithVirtualKeyboard from "./InputFieldWithVirtualKeyboard"
import Column from "lluis/Column"
import Columns from "lluis/Columns"
import evaluateAnswer from "@librelingo/answer-corrector/index.ts"
import evaluateAnswer from "@librelingo/answer-corrector"

export let challenge
export let registerResult
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Svelte",

"compilerOptions": {
"moduleResolution": "node",
"target": "es2017",
Expand All @@ -17,8 +16,10 @@
*/
"sourceMap": true,
/** Requests the runtime types from the svelte modules by default. Needed for TS files or else you get errors. */
"types": ["svelte", "jest"],

"types": [
"svelte",
"jest"
],
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
Expand Down

0 comments on commit 8b81147

Please sign in to comment.