29 lines
905 B
JSON
29 lines
905 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/contracts": ["../../contracts/src"],
|
|
"@customer-portal/contracts/*": ["../../contracts/src/*"],
|
|
"@customer-portal/schemas": ["../../schemas/src"],
|
|
"@customer-portal/schemas/*": ["../../schemas/src/*"],
|
|
"@customer-portal/integrations-freebit": ["./src"],
|
|
"@customer-portal/integrations-freebit/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
|
"references": [
|
|
{ "path": "../../contracts" },
|
|
{ "path": "../../schemas" }
|
|
]
|
|
}
|