2023-07-06 16:37:47 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-01-31 01:23:33 +02:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "bundler",
|
2023-07-06 16:37:47 +02:00
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
2024-02-02 05:18:00 +02:00
|
|
|
"target": "es2022",
|
2023-07-06 16:37:47 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2023-12-19 04:29:26 +02:00
|
|
|
"rootDirs": ["src", "../server/src"],
|
2023-07-06 16:37:47 +02:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2023-12-19 04:29:26 +02:00
|
|
|
"@test": ["../server/test"],
|
|
|
|
"@test/*": ["../server/test/*"],
|
2024-01-31 01:23:33 +02:00
|
|
|
"@test-utils": ["../server/src/test-utils/utils"],
|
2023-12-19 04:29:26 +02:00
|
|
|
"@app/immich": ["../server/src/immich"],
|
|
|
|
"@app/immich/*": ["../server/src/immich/*"],
|
|
|
|
"@app/infra": ["../server/src/infra"],
|
|
|
|
"@app/infra/*": ["../server/src/infra/*"],
|
|
|
|
"@app/domain": ["../server/src/domain"],
|
|
|
|
"@app/domain/*": ["../server/src/domain/*"]
|
2024-01-31 01:23:33 +02:00
|
|
|
},
|
|
|
|
"types": ["vitest/globals"]
|
2023-07-06 16:37:47 +02:00
|
|
|
},
|
2024-02-02 05:18:00 +02:00
|
|
|
"exclude": ["dist", "node_modules"]
|
2023-07-06 16:37:47 +02:00
|
|
|
}
|