mirror of
https://github.com/aiclientproxy/proxycast.git
synced 2026-09-01 15:30:52 +08:00
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@limecloud/agent-runtime-projection": [
|
|
"./packages/agent-runtime-projection/src/index.ts"
|
|
],
|
|
"@limecloud/agent-runtime-client": [
|
|
"./packages/agent-runtime-client/src/index.ts"
|
|
],
|
|
"@limecloud/agent-runtime-client/sessionGateway": [
|
|
"./packages/agent-runtime-client/src/sessionGateway.ts"
|
|
],
|
|
"@limecloud/app-server-client": [
|
|
"./packages/app-server-client/src/index.ts"
|
|
],
|
|
"@limecloud/agent-runtime-ui": [
|
|
"./packages/agent-runtime-ui/src/index.ts"
|
|
],
|
|
"@limecloud/agent-ui-contracts": [
|
|
"./packages/agent-ui-contracts/src/index.ts"
|
|
],
|
|
"app-server-client": ["./packages/app-server-client/src/index.ts"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|