mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-26 13:31:45 +03:00
41bed57be9
* [backend] add cache storage module * update docs * update default TTL to a week
37 lines
980 B
JSON
37 lines
980 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"esModuleInterop": true,
|
|
"target": "es2017",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"resolveJsonModule": true,
|
|
"types": ["jest", "node"],
|
|
"paths": {
|
|
"src/*": ["packages/twenty-server/src/*"],
|
|
"twenty-emails": ["packages/twenty-emails/src/index.ts"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"files": true,
|
|
"require": ["tsconfig-paths/register"]
|
|
},
|
|
"exclude": ["dist"]
|
|
}
|