Fix typescript error

This commit is contained in:
Ryan Pandya 2023-05-31 10:26:05 -07:00
parent 3633ed026e
commit 9567851e3f
3 changed files with 4 additions and 8 deletions

View File

@ -1,4 +1,4 @@
<script setup> <script setup lang="ts">
import { useSessionStore } from "../stores/session"; import { useSessionStore } from "../stores/session";
const storeSession = useSessionStore(); const storeSession = useSessionStore();

View File

@ -1,9 +1,6 @@
<script setup> <script>
import appwrite from "@/services/appwrite"; import appwrite from "@/services/appwrite";
import { DateTime } from "luxon"; import { DateTime } from "luxon";
</script>
<script>
import { defineComponent } from "vue"; import { defineComponent } from "vue";
import { HotTable } from "@handsontable/vue3"; import { HotTable } from "@handsontable/vue3";
import { registerAllModules } from "handsontable/registry"; import { registerAllModules } from "handsontable/registry";

View File

@ -7,9 +7,8 @@
"@/*": ["./src/*"] "@/*": ["./src/*"]
}, },
"noImplicitAny": false, "noImplicitAny": false,
"ignoreDeprecations": "5.0", "ignoreDeprecations": "5.0"
"allowJs": true },
},
"references": [ "references": [
{ {