From 289b6cc7846525551b7e4e874a585bb42b2f2d30 Mon Sep 17 00:00:00 2001 From: pandadev <70103896+0PandaDEV@users.noreply.github.com> Date: Wed, 5 Mar 2025 13:39:54 +0100 Subject: [PATCH] chore(config): update project configuration and dependencies --- nuxt.config.ts | 5 +++-- package.json | 4 ++-- tsconfig.json | 5 ++++- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index a401152..fdd017c 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,9 +1,10 @@ // https://nuxt.com/docs/api/configuration/nuxt-config +import { defineNuxtConfig } from 'nuxt/config'; + export default defineNuxtConfig({ devtools: { enabled: false }, compatibilityDate: "2024-07-04", ssr: false, - modules: ["wrdu-keyboard"], vite: { css: { preprocessorOptions: { @@ -12,5 +13,5 @@ export default defineNuxtConfig({ }, }, }, - }, + } }); diff --git a/package.json b/package.json index f00a2ec..0392a82 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "nuxt-app", + "name": "qopy", "private": true, "type": "module", "scripts": { @@ -20,7 +20,7 @@ "sass-embedded": "1.85.1", "uuid": "11.1.0", "vue": "3.5.13", - "wrdu-keyboard": "3.2.0" + "wrdu-keyboard": "link:wrdu-keyboard" }, "overrides": { "chokidar": "^3.6.0" diff --git a/tsconfig.json b/tsconfig.json index a746f2a..60ef513 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,7 @@ { // https://nuxt.com/docs/guide/concepts/typescript - "extends": "./.nuxt/tsconfig.json" + "extends": "./.nuxt/tsconfig.json", + "compilerOptions": { + "noEmit": true + } }