22 lines
641 B
JSON
22 lines
641 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
|
|
"noEmit": false,
|
|
"allowImportingTsExtensions": false,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
// Self root
|
|
"@/*": ["src/*"],
|
|
|
|
// Simplified monorepo solution (raw npm workspace with hoisting)
|
|
"@page-agent/page-controller": ["../page-controller/src/PageController.ts"],
|
|
"page-agent": ["../page-agent/src/PageAgent.ts"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"references": [{ "path": "../page-controller" }, { "path": "../page-agent" }]
|
|
}
|