Skip to content

Commit

Permalink
fix: update tsconfig.json to fix auto-imports in dev:watch mode (#1694)
Browse files Browse the repository at this point in the history
Co-authored-by: dschlabach <[email protected]>
  • Loading branch information
dschlabach and dschlabach authored Dec 5, 2024
1 parent 82df21e commit f69950c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion playground/nextjs-app-router/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
}
],
"paths": {
"@/*": ["./*"]
"@/components/*": ["./components/*"],
"@/lib/*": ["./lib/*"],
"@/types/*": ["./types/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
Expand Down

0 comments on commit f69950c

Please sign in to comment.