diff --git a/.vscode/settings.json b/.vscode/settings.json index 9c8106cc729..c1630592e0b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,5 +8,7 @@ "jestrunner.codeLensSelector": "", "vitest.filesWatcherInclude": "**/*.test.ts", "editor.formatOnSave": true, - "typescript.preferences.preferTypeOnlyAutoImports": true + "typescript.preferences.preferTypeOnlyAutoImports": true, + "typescript.tsserver.log": "verbose", + "typescript.tsserver.trace": "messages" } diff --git a/packages/tsconfig/next.json b/packages/tsconfig/next.json index 00294a07d6b..df4f5afa901 100644 --- a/packages/tsconfig/next.json +++ b/packages/tsconfig/next.json @@ -1,5 +1,8 @@ { "$schema": "https://json.schemastore.org/tsconfig", "display": "Next.js", - "extends": ["./base.json", "@tsconfig/next/tsconfig.json"] + "extends": "@tsconfig/next/tsconfig.json", + "compilerOptions": { + "verbatimModuleSyntax": true + } }