Skip to content

Commit

Permalink
🔧 Simplify tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevella committed Jan 14, 2025
1 parent ff3d992 commit 7367c92
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
5 changes: 4 additions & 1 deletion packages/tsconfig/next.json
Original file line number Diff line number Diff line change
@@ -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
}
}

0 comments on commit 7367c92

Please sign in to comment.