Files
Homarr/apps/nextjs/tsconfig.json

18 lines
345 B
JSON
Raw Normal View History

2023-12-08 22:35:15 +01:00
{
"extends": "@homarr/tsconfig/base.json",
2023-12-08 22:35:15 +01:00
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
2023-12-08 22:35:15 +01:00
},
"plugins": [
{
"name": "next",
},
2023-12-08 22:35:15 +01:00
],
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
2023-12-08 22:35:15 +01:00
},
"include": [".", ".next/types/**/*.ts"],
"exclude": ["node_modules"],
2023-12-08 22:35:15 +01:00
}