Files
Compass/tests/e2e/tsconfig.json
Okechi Jones-Williams e115df8e11 [Onboarding Flow] Answer compatibility questions in the test suite for onboarding (#35)
* 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>
2026-03-04 11:05:56 +01:00

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"]
}