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" + } }