2022-02-03 09:06:44 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-02-01 20:18:00 -07:00
|
|
|
"module": "node16",
|
2022-06-25 10:53:06 -07:00
|
|
|
"strict": true,
|
2022-02-03 09:06:44 -07:00
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-06-11 14:12:06 -07:00
|
|
|
"resolveJsonModule": true,
|
2024-02-01 20:18:00 -07:00
|
|
|
"target": "es2022",
|
2023-06-17 20:22:31 -07:00
|
|
|
"moduleResolution": "node16",
|
2022-02-03 09:06:44 -07:00
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2023-09-08 08:17:45 -07:00
|
|
|
"preserveWatchOutput": true,
|
2022-06-11 14:12:06 -07:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2023-09-08 08:17:45 -07:00
|
|
|
"@test": ["test"],
|
|
|
|
"@test/*": ["test/*"],
|
|
|
|
"@app/immich": ["src/immich"],
|
|
|
|
"@app/immich/*": ["src/immich/*"],
|
|
|
|
"@app/infra": ["src/infra"],
|
|
|
|
"@app/infra/*": ["src/infra/*"],
|
|
|
|
"@app/domain": ["src/domain"],
|
2024-02-01 20:18:00 -07:00
|
|
|
"@app/domain/*": ["src/domain/*"],
|
|
|
|
},
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
2024-02-01 20:18:00 -07:00
|
|
|
"exclude": ["dist", "node_modules", "upload"],
|
2023-09-08 08:17:45 -07:00
|
|
|
}
|