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