2023-09-23 15:58:51 -04:00
|
|
|
{
|
2023-10-03 01:20:29 -04:00
|
|
|
// https://nuxt.com/docs/guide/concepts/typescript
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"noImplicitAny": false,
|
2023-12-09 17:45:23 -05:00
|
|
|
"noImplicitThis": false,
|
2023-12-20 17:23:31 -05:00
|
|
|
"verbatimModuleSyntax": false,
|
|
|
|
"paths": {
|
|
|
|
"@models/*": ["./models/*"],
|
|
|
|
"@client/*": ["./lib/client/*"],
|
|
|
|
"@server/*": ["./lib/server/*"],
|
|
|
|
"@client/**": ["./lib/client/**"],
|
|
|
|
"@models/**": ["./models/**"],
|
|
|
|
"@server/**": ["./lib/server/**"],
|
|
|
|
"@functions": ["./lib/functions.ts"],
|
|
|
|
"@dbconfig": ["./lib/dbconfig.ts"]
|
|
|
|
}
|
2023-10-03 01:20:29 -04:00
|
|
|
},
|
|
|
|
"extends": "./.nuxt/tsconfig.json"
|
2023-09-23 15:58:51 -04:00
|
|
|
}
|