diff --git a/server/tsconfig.json b/server/tsconfig.json index 0983841..59430a6 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -4,6 +4,8 @@ "allowJs": true, "outDir": "../out", "noImplicitAny": false, - "verbatimModuleSyntax": false + "verbatimModuleSyntax": false, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true } } diff --git a/tsconfig.json b/tsconfig.json index ca44d8b..5968bd0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,13 @@ { - // https://nuxt.com/docs/guide/concepts/typescript "extends": "./.nuxt/tsconfig.json", + // https://nuxt.com/docs/guide/concepts/typescript "compilerOptions": { "allowJs": true, + "esModuleInterop": true, "noImplicitAny": false, "noImplicitThis": false, - "verbatimModuleSyntax": false - // "paths": { - // "@dbconfig": ["./lib/dbconfig.ts"], - // "@functions": ["./lib/functions.ts"] - // } - } + "verbatimModuleSyntax": false, + "forceConsistentCasingInFileNames": false, + "allowSyntheticDefaultImports": true + }, }