- Introduced CommonModule for shared services and configurations. - Added CoreModule to manage database connections and configurations. - Implemented PostgresService for PostgreSQL operations. - Created configuration files for database and network provider. - Integrated ethers.js for Ethereum interactions. - Added validation pipes globally in the main application. - Created DeployerModule with initial controller and service structure. - Updated package.json with necessary dependencies for new features.
24 lines
602 B
JSON
24 lines
602 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"target": "ES2023",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"strictBindCallApply": false,
|
|
"noFallthroughCasesInSwitch": true
|
|
}
|
|
}
|