next/server/tsconfig.json

19 lines
474 B
JSON
Raw Normal View History

2023-09-23 15:58:51 -04:00
{
"extends": "../.nuxt/tsconfig.server.json",
"compilerOptions": {
"allowJs": true,
"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"]
}
}
2023-09-23 15:58:51 -04:00
}