2023-12-08 22:35:15 +01:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2025-03-12 18:37:43 +01:00
|
|
|
"lib": ["dom", "dom.iterable", "ES2022"],
|
2023-12-08 22:35:15 +01:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
2025-03-12 18:37:43 +01:00
|
|
|
"allowArbitraryExtensions": true,
|
2023-12-08 22:35:15 +01:00
|
|
|
"isolatedModules": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"incremental": true,
|
2024-02-10 19:00:08 +01:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2024-06-08 20:49:57 +02:00
|
|
|
"strictNullChecks": true,
|
2025-05-16 20:59:12 +02:00
|
|
|
"experimentalDecorators": true,
|
2024-02-10 19:00:08 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2025-05-16 20:59:12 +02:00
|
|
|
"@homarr/node-unifi": ["${configDir}/../../node_modules/@types/node-unifi"],
|
2025-03-12 18:37:43 +01:00
|
|
|
"*": ["node_modules/*"]
|
2024-02-10 19:00:08 +01:00
|
|
|
}
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
2025-03-12 18:37:43 +01:00
|
|
|
"exclude": ["node_modules", "build", "dist", ".next"]
|
|
|
|
|
}
|