1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-22 01:47:08 +02:00
immich/server/tsconfig.json

21 lines
439 B
JSON
Raw Normal View History

2022-02-03 18:06:44 +02:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
},
"exclude": [
"dist",
"node_modules",
2022-02-03 18:06:44 +02:00
"upload"
],
}