mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 01:51:37 -04:00
* Fixed Type errors * Added Database checks to the onboarding flow * Updated Onboarding flow Changed type ChildrenExpectation so that it can be used for database verification * Added compatibility page setup Added more compatibility questions * Finished up the onboarding flow suite Added compatibility question tests and verifications Updated tests to cover Keywords and Headline changes recently made Updated tests to cover all of the big5 personality traits * Apply suggestions from code review --------- Co-authored-by: Martin Braquet <martin.braquet@gmail.com>
23 lines
549 B
JSON
23 lines
549 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"shared/*": ["../../backend/shared/src/*"],
|
|
"common/*": ["../../common/src/*"],
|
|
"backend/*": ["../../backend/*"],
|
|
"web/*": ["../../web/*"]
|
|
}
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
"exclude": ["**/*.test.ts", "**/*.spec.ts"]
|
|
}
|