mirror of
https://github.com/twentyhq/twenty.git
synced 2026-06-12 01:46:39 -04:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
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": "es2018",
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": false,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"resolveJsonModule": true,
|
|
"types": ["jest", "node"],
|
|
"paths": {
|
|
"src/*": ["./src/*"],
|
|
"test/*": ["./test/*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"files": true,
|
|
"require": ["tsconfig-paths/register"]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src/engine/metadata-modules/front-component/constants/seed-project"
|
|
]
|
|
}
|