From 63eafa84bf94bf6d80e5d3b0a026fa7784856ed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Wed, 20 Dec 2023 17:46:01 -0500 Subject: [PATCH] fix(workspace): tsconfig nits rollup lol --- tsconfig.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 85f4f6f..cab916c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,5 @@ { + "extends": "./.nuxt/tsconfig.json", // https://nuxt.com/docs/guide/concepts/typescript "compilerOptions": { "allowJs": true, @@ -6,18 +7,17 @@ "noImplicitThis": false, "verbatimModuleSyntax": false, "paths": { - "@models/*": ["./models/*"], + "@models": ["./lib/models"], "@client": ["./lib/client"], "@server": ["./lib/server"], - "@models": ["./lib/models"], + "@models/*": ["./models/*"], "@client/*": ["./lib/client/*"], "@server/*": ["./lib/server/*"], - "@client/**": ["./lib/client/**"], "@models/**": ["./models/**"], + "@client/**": ["./lib/client/**"], "@server/**": ["./lib/server/**"], "@functions": ["./lib/functions.ts"], "@dbconfig": ["./lib/dbconfig.ts"] } - }, - "extends": "./.nuxt/tsconfig.json" + } }