24 lines
644 B
JSON
24 lines
644 B
JSON
{
|
|
"extends": "./.nuxt/tsconfig.json",
|
|
// https://nuxt.com/docs/guide/concepts/typescript
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"verbatimModuleSyntax": false,
|
|
"paths": {
|
|
"@models": ["./lib/models"],
|
|
"@client": ["./lib/client"],
|
|
"@server": ["./lib/server"],
|
|
"@models/*": ["./models/*"],
|
|
"@client/*": ["./lib/client/*"],
|
|
"@server/*": ["./lib/server/*"],
|
|
// "@models/**": ["./models/**"],
|
|
// "@client/**": ["./lib/client/**"],
|
|
// "@server/**": ["./lib/server/**"],
|
|
"@functions": ["./lib/functions.ts"],
|
|
"@dbconfig": ["./lib/dbconfig.ts"]
|
|
}
|
|
}
|
|
}
|