Files
Homarr/apps/nextjs/tsconfig.json
2023-12-08 23:13:46 +01:00

18 lines
340 B
JSON

{
"extends": "@alparr/tsconfig/base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
},
"plugins": [
{
"name": "next"
}
],
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
},
"include": [".", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}