From 48c96f140b61f0c82c25b704cd25e1fc35dabb70 Mon Sep 17 00:00:00 2001 From: Xicri <107226297+xicri@users.noreply.github.com> Date: Tue, 1 Oct 2024 15:43:09 +0900 Subject: [PATCH] chore: remove tsconfig options already declared in .nuxt/tsconfig.json --- nuxt.config.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index f5bb6c0e..b461075f 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -15,22 +15,13 @@ export default defineNuxtConfig({ strict: true, tsConfig: { compilerOptions: { - strict: true, - skipLibCheck: true, - moduleResolution: "bundler", - esModuleInterop: true, - resolveJsonModule: true, allowImportingTsExtensions: true, - allowJs: true, checkJs: true, - module: "esnext", - target: "esnext", newLine: "lf", removeComments: true, declaration: false, - lib: [ "esnext", "dom" ], types: [ "@cloudflare/workers-types/2023-07-01", ],