twenty/packages/twenty-server/tsconfig.json

38 lines
1.0 KiB
JSON
Raw Normal View History

2022-12-01 17:58:08 +03:00
{
"extends": "../../tsconfig.base.json",
2022-12-01 17:58:08 +03:00
"compilerOptions": {
"jsx": "react-jsx",
2022-12-01 17:58:08 +03:00
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"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,
"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,
"resolveJsonModule": true,
"types": ["jest", "node"],
"paths": {
"src/*": ["packages/twenty-server/src/*"],
"test/*": ["packages/twenty-server/test/*"],
"twenty-emails": ["packages/twenty-emails/src/index.ts"]
}
},
"ts-node": {
"files": true,
"require": ["tsconfig-paths/register"]
},
"exclude": ["dist"]
2022-12-01 17:58:08 +03:00
}