mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
27 lines
687 B
JSON
27 lines
687 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es2017",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@app/infra": ["libs/infra/src"],
|
|
"@app/infra/*": ["libs/infra/src/*"],
|
|
"@app/domain": ["libs/domain/src"],
|
|
"@app/domain/*": ["libs/domain/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist", "node_modules", "upload"]
|
|
}
|