diff --git a/packages/services/billing-service/tsconfig.json b/packages/services/billing-service/tsconfig.json index 95f5641..5673c32 100644 --- a/packages/services/billing-service/tsconfig.json +++ b/packages/services/billing-service/tsconfig.json @@ -1,21 +1,26 @@ { + "extends": "../../../tsconfig.base.json", "compilerOptions": { - "module": "commonjs", - "declaration": true, - "removeComments": true, - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "allowSyntheticDefaultImports": true, - "target": "ES2021", - "sourceMap": true, "outDir": "./dist", - "baseUrl": "./", - "incremental": true, - "skipLibCheck": true, + "baseUrl": ".", "strictNullChecks": false, "noImplicitAny": false, "strictBindCallApply": false, - "forceConsistentCasingInFileNames": false, - "noFallthroughCasesInSwitch": false - } + "strictPropertyInitialization": false, + "useUnknownInCatchVariables": false, + "paths": { + "@it0/common": ["../../shared/common/src"], + "@it0/common/*": ["../../shared/common/src/*"], + "@it0/database": ["../../shared/database/src"], + "@it0/database/*": ["../../shared/database/src/*"], + "@it0/events": ["../../shared/events/src"], + "@it0/events/*": ["../../shared/events/src/*"], + "@it0/proto": ["../../shared/proto/src"], + "@it0/proto/*": ["../../shared/proto/src/*"], + "@it0/testing": ["../../shared/testing/src"], + "@it0/testing/*": ["../../shared/testing/src/*"] + } + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist", "test"] }