- Deleted the DebrosFramework integration test file to streamline the test suite. - Updated blog API server to import reflect-metadata for decorator support. - Changed Docker Compose command for blog integration tests to run real tests. - Modified TypeScript configuration for Docker to target ES2022 and enable synthetic default imports. - Removed obsolete Jest configuration and setup files for blog scenario tests. - Cleaned up global test setup by removing console mocks and custom matchers.
24 lines
624 B
JSON
24 lines
624 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"useDefineForClassFields": false,
|
|
"strictPropertyInitialization": false,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"isolatedModules": true,
|
|
"removeComments": true,
|
|
"inlineSources": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"baseUrl": "../../../../"
|
|
},
|
|
"include": ["blog-api-server.ts", "../../../../src/**/*"]
|
|
}
|