1
0
mirror of https://github.com/immich-app/immich.git synced 2026-05-21 21:48:14 +02:00
Files
immich/server/tsconfig.json
T

38 lines
766 B
JSON
Raw Normal View History

2022-02-03 10:06:44 -06:00
{
"compilerOptions": {
"module": "commonjs",
"strict": true,
2022-02-03 10:06:44 -06:00
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
2022-02-03 10:06:44 -06:00
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
"baseUrl": "./",
"paths": {
"@app/database": [
"libs/database/src"
],
"@app/database/*": [
"libs/database/src/*"
],
"@app/job": [
"libs/job/src"
],
"@app/job/*": [
"libs/job/src/*"
]
}
2022-02-03 10:06:44 -06:00
},
"exclude": [
2022-05-20 01:30:47 +02:00
"dist",
"node_modules",
2022-02-03 10:06:44 -06:00
"upload"
]
2022-02-03 10:06:44 -06:00
}