chore(api): remove path aliases from tsconfig

in favour of the nuxt aliases
This commit is contained in:
parent f2a7d0d9a6
commit ed4536fa91
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

@ -2,17 +2,6 @@
"extends": "../.nuxt/tsconfig.server.json", "extends": "../.nuxt/tsconfig.server.json",
"compilerOptions": { "compilerOptions": {
"allowJs": true, "allowJs": true,
"outDir": "../out", "outDir": "../out"
"paths": {
"@models/*": ["../models/*"],
"@client/*": ["./lib/client/*"],
"@server/*": ["../lib/server/*"],
"@models/**": ["../models/**"],
"@client/**": ["../lib/client/**"],
"@server/**": ["../lib/server/**"],
"@functions": ["../lib/functions.ts"],
"@dbconfig": ["../lib/dbconfig.ts"],
"@constants": ["../lib/constants.ts"]
}
} }
} }