what the fuck

This commit is contained in:
Alex Ant
2026-03-23 17:44:50 +05:00
parent f85fa7d786
commit f8ca89ada6
4 changed files with 1808 additions and 1092 deletions
+12 -11
View File
@@ -15,6 +15,7 @@
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"typecheck": "tsc --noEmit --skipLibCheck",
"prepare": "quasar prepare",
"dev": "quasar dev --mode ssr",
"devnet": "quasar dev",
"ssr": "quasar dev --mode ssr",
@@ -79,7 +80,6 @@
"serialize-javascript": "^6.0.2",
"socket.io": "^4.8.1",
"swiper": "^11.1.7",
"vite": "2.9.16",
"vue": "^3.4.18",
"vue-i18n": "^9.2.2",
"vue-markdown-render": "^2.2.1",
@@ -89,14 +89,14 @@
"vue3-openlayers": "^10.0.1"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
"@intlify/unplugin-vue-i18n": "^11.0.7",
"@prettier/plugin-pug": "^3.2.0",
"@quasar/app-vite": "^1.9.3",
"@types/node": "^12.20.21",
"@quasar/app-vite": "^2.5.2",
"@types/node": "^22.0.0",
"@types/serviceworker": "^0.0.141",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vue/language-plugin-pug": "^1.8.27",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vue/language-plugin-pug": "^3.2.6",
"autoprefixer": "^10.4.2",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
@@ -107,9 +107,10 @@
"fs": "0.0.1-security",
"prettier": "^3.6.0",
"sass": "^1.97.3",
"typescript": "5.1.6",
"vite-plugin-checker": "^0.6.4",
"vue-tsc": "^1.8.22",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vite-plugin-checker": "^0.11.0",
"vue-tsc": "~2.2.10",
"workbox-build": "7.0.0",
"workbox-cacheable-response": "7.0.0",
"workbox-core": "7.0.0",
@@ -119,7 +120,7 @@
"workbox-strategies": "7.0.0"
},
"engines": {
"node": "^20 || ^18 || ^16",
"node": ">=22",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
+7 -1
View File
@@ -11,6 +11,12 @@
const { configure } = require('quasar/wrappers');
const path = require('path');
const VueI18nVitePlugin = require('@intlify/unplugin-vue-i18n/vite');
const vueI18nVitePlugin =
typeof VueI18nVitePlugin === 'function'
? VueI18nVitePlugin
: VueI18nVitePlugin.default;
require('dotenv').config();
module.exports = configure(function (ctx) {
const isDev = ctx.dev;
@@ -96,7 +102,7 @@ module.exports = configure(function (ctx) {
vitePlugins: [
[
'@intlify/vite-plugin-vue-i18n',
vueI18nVitePlugin,
{
// if you want to use Vue I18n Legacy API, you need to set `compositionOnly: false`
// compositionOnly: false,
+3 -22
View File
@@ -1,30 +1,11 @@
{
"extends": "@quasar/app-vite/tsconfig-preset",
"extends": "./.quasar/tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"skipLibCheck": true,
"noImplicitAny": false,
"lib": ["ES2020", "DOM", "WebWorker"]
"lib": ["ES2022", "DOM", "WebWorker"]
},
"vueCompilerOptions": {
"plugins": ["@vue/language-plugin-pug"]
},
"include": ["./**/*.vue", "./**/*.ts"],
"exclude": [
"./Env-example.ts",
"./dist",
"./.quasar",
"./node_modules",
"./src-capacitor",
"./src-cordova",
"./quasar.config.*.temporary.compiled*"
]
}
}
+1786 -1058
View File
File diff suppressed because it is too large Load Diff