fix:#71 fixed formatting and import for moment

This commit is contained in:
masterElmar
2023-11-17 20:49:25 +01:00
parent 0ac7264bdb
commit 4341654470
3 changed files with 6 additions and 5 deletions

View File

@@ -2982,9 +2982,9 @@
} }
}, },
"node_modules/postcss": { "node_modules/postcss": {
"version": "8.4.28", "version": "8.4.31",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
"integrity": "sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==", "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
"funding": [ "funding": [
{ {
"type": "opencollective", "type": "opencollective",

View File

@@ -2,7 +2,7 @@
import {inject} from "vue"; import {inject} from "vue";
import {Module} from "../model/module.ts"; import {Module} from "../model/module.ts";
import {Event} from "../model/event.ts"; import {Event} from "../model/event.ts";
import * as moment from 'moment-timezone'; import moment from "moment-timezone";
// eslint-disable-next-line @typescript-eslint/no-explicit-any // eslint-disable-next-line @typescript-eslint/no-explicit-any
const dialogRef = inject("dialogRef") as any; const dialogRef = inject("dialogRef") as any;

View File

@@ -17,7 +17,8 @@
"strict": true, "strict": true,
"noUnusedLocals": true, "noUnusedLocals": true,
"noUnusedParameters": true, "noUnusedParameters": true,
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true
}, },
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": ["./src/*"]