mirror of
https://github.com/immich-app/immich.git
synced 2026-07-28 22:51:21 -07:00
df970da59e
* chore(deps): update dependency eslint-plugin-unicorn to v70 * fix: linting --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
28 lines
698 B
JSON
28 lines
698 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es2023",
|
|
"lib": ["ESNext"],
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"rootDir": "./src",
|
|
"paths": {
|
|
"src/*": ["./src/*"],
|
|
},
|
|
"tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo",
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"exclude": ["dist", "node_modules", "vite.config.ts"]
|
|
}
|