2022-02-03 10:06:44 -06:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
2022-06-25 19:53:06 +02:00
|
|
|
"strict": true,
|
2022-02-03 10:06:44 -06:00
|
|
|
"declaration": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-06-11 16:12:06 -05:00
|
|
|
"resolveJsonModule": true,
|
2022-02-03 10:06:44 -06:00
|
|
|
"target": "es2017",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
2022-06-11 16:12:06 -05:00
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@app/database": [
|
|
|
|
|
"libs/database/src"
|
|
|
|
|
],
|
|
|
|
|
"@app/database/*": [
|
|
|
|
|
"libs/database/src/*"
|
2022-07-02 21:06:36 -05:00
|
|
|
],
|
|
|
|
|
"@app/job": [
|
|
|
|
|
"libs/job/src"
|
|
|
|
|
],
|
|
|
|
|
"@app/job/*": [
|
|
|
|
|
"libs/job/src/*"
|
2022-06-11 16:12:06 -05:00
|
|
|
]
|
|
|
|
|
}
|
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-06-11 16:12:06 -05:00
|
|
|
]
|
2022-02-03 10:06:44 -06:00
|
|
|
}
|