Files
core2026/tsconfig.paths.json
T
Hide_D a9ddffa97c feat: add integration tests for initialization flow
- Implemented end-to-end integration tests covering database reset, bootstrap admin creation, demo user provisioning, scenario installation, and general creation.
- Added support for deterministic seeding and auto admin general creation.
- Created a new package for integration tests with necessary configurations and scripts.
- Updated various modules to support new features, including admin user handling and scenario seeding.
- Enhanced error handling and validation in the join and orchestrator modules.
2026-01-18 06:32:19 +00:00

21 lines
898 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@sammo-ts/common": ["packages/common/src/index.ts"],
"@sammo-ts/common/*": ["packages/common/src/*"],
"@sammo-ts/infra": ["packages/infra/src/index.ts"],
"@sammo-ts/infra/*": ["packages/infra/src/*"],
"@sammo-ts/logic": ["packages/logic/src/index.ts"],
"@sammo-ts/logic/*": ["packages/logic/src/*"],
"@sammo-ts/gateway-api": ["app/gateway-api/src/index.ts"],
"@sammo-ts/gateway-api/*": ["app/gateway-api/src/*"],
"@sammo-ts/game-api": ["app/game-api/src/index.ts"],
"@sammo-ts/game-api/*": ["app/game-api/src/*"],
"@sammo-ts/game-engine": ["app/game-engine/src/index.ts"],
"@sammo-ts/game-engine/*": ["app/game-engine/src/*"]
}
}
}