Charles has done everything within https://github.com/twentyhq/twenty/pull/9754 Last thing to be done is removing the custom module `path` configured in the `tsconfig.json` close https://github.com/twentyhq/core-team-issues/issues/282
38 lines
952 B
JSON
38 lines
952 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,
|
|
"inlineSources": 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/*": ["./src/*"],
|
|
"test/*": ["./test/*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"files": true,
|
|
"require": ["tsconfig-paths/register"]
|
|
},
|
|
"exclude": ["dist"]
|
|
}
|