2022-12-01 17:58:08 +03:00
|
|
|
{
|
2024-01-29 12:17:12 +03:00
|
|
|
"extends": "../../tsconfig.base.json",
|
2022-12-01 17:58:08 +03:00
|
|
|
"compilerOptions": {
|
2024-01-29 12:17:12 +03:00
|
|
|
"jsx": "react-jsx",
|
2022-12-01 17:58:08 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-06-17 14:42:02 +03:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"esModuleInterop": true,
|
2022-12-01 17:58:08 +03:00
|
|
|
"target": "es2017",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
2023-04-24 16:00:37 +03:00
|
|
|
"strictNullChecks": true,
|
2023-06-17 14:42:02 +03:00
|
|
|
"alwaysStrict": true,
|
2022-12-01 17:58:08 +03:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"strictBindCallApply": false,
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
2023-04-24 16:00:37 +03:00
|
|
|
"noFallthroughCasesInSwitch": false,
|
2023-08-01 01:47:29 +03:00
|
|
|
"resolveJsonModule": true,
|
2024-01-29 12:17:12 +03:00
|
|
|
"types": ["jest", "node"],
|
|
|
|
"paths": {
|
|
|
|
"src/*": ["packages/twenty-server/src/*"],
|
2024-03-28 19:59:48 +03:00
|
|
|
"test/*": ["packages/twenty-server/test/*"],
|
2024-01-29 12:17:12 +03:00
|
|
|
"twenty-emails": ["packages/twenty-emails/src/index.ts"]
|
|
|
|
}
|
2024-02-20 16:35:09 +03:00
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"files": true,
|
|
|
|
"require": ["tsconfig-paths/register"]
|
2024-03-07 16:07:01 +03:00
|
|
|
},
|
|
|
|
"exclude": ["dist"]
|
2022-12-01 17:58:08 +03:00
|
|
|
}
|