next/tsconfig.json

15 lines
334 B
JSON
Raw Normal View History

2023-09-23 15:58:51 -04:00
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": false,
"verbatimModuleSyntax": false
// "paths": {
// "@dbconfig": ["./lib/dbconfig.ts"],
// "@functions": ["./lib/functions.ts"]
// }
}
2023-09-23 15:58:51 -04:00
}