mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 10:49:14 +01:00
30 lines
823 B
JSON
30 lines
823 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"lib": ["dom", "dom.iterable", "ES2024"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"allowArbitraryExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@homarr/node-unifi": ["${configDir}/../../node_modules/@types/node-unifi"],
|
|
"*": ["node_modules/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "build", "dist", ".next"]
|
|
}
|