48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Monorepo Root",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@lingshu/core-utils": ["./packages/core-utils/src/index.ts"],
|
|
"@lingshu/form-create": ["./packages/form-create/src/index.ts"],
|
|
// "@lingshu/lowcode-create": ["./packages/lowcode-create/src/index.ts"],
|
|
"@lingshu/form-designer": ["./packages/form-designer/src/index.ts"],
|
|
"@busi-comp/*": ["./packages/business-components/src/*"],
|
|
"@lingshu/ai-agents": ["./packages/ai-agents/src/index.ts"],
|
|
"@lingshu/types/*": ["./packages/types/*"]
|
|
},
|
|
"allowImportingTsExtensions": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"references": [
|
|
{ "path": "./apps/lcdp" },
|
|
{ "path": "./packages/form-designer" },
|
|
{ "path": "./packages/form-create" },
|
|
{ "path": "./packages/lowcode-create" },
|
|
{ "path": "./packages/business-components" },
|
|
{ "path": "./packages/core-utils" },
|
|
{ "path": "./packages/ai-agents" },
|
|
{ "path": "./packages/business-module" },
|
|
{ "path": "./packages/types" }
|
|
],
|
|
"files": [],
|
|
"include": [],
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/dist",
|
|
"**/.turbo",
|
|
"**/coverage",
|
|
"**/build",
|
|
"**/out",
|
|
"**/.nyc_output",
|
|
"**/temp",
|
|
"**/tmp"
|
|
]
|
|
}
|