26 lines
734 B
JSON
26 lines
734 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "nodenext",
|
|
"lib": ["ES2022"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"composite": true,
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
|
|
"paths": {
|
|
"@customer-portal/domain": ["../domain/index.ts"],
|
|
"@customer-portal/domain/*": ["../domain/*"],
|
|
"@customer-portal/integrations-freebit": ["./src"],
|
|
"@customer-portal/integrations-freebit/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
|
"references": [
|
|
{ "path": "../../domain" }
|
|
]
|
|
}
|