14 lines
278 B
JSON
14 lines
278 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"]
|
|
}
|
|
}
|
|
}
|