mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
af0de1a768
* chore: linting * fix: broken tests * fix: formatting
24 lines
572 B
JSON
24 lines
572 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es2022",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"rootDirs": ["src"],
|
|
"baseUrl": "./"
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|