23 lines
579 B
JSON
23 lines
579 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2021",
|
|
"lib": ["ES2021"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@genex/common": ["../../packages/common/src"],
|
|
"@genex/kafka-client": ["../../packages/kafka-client/src"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|