pi-mono/packages/web-ui/example/tsconfig.json
2026-05-07 15:59:42 +02:00

23 lines
655 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"moduleResolution": "bundler",
"paths": {
"*": ["./*"],
"@earendil-works/pi-agent-core": ["../../agent/dist/index.d.ts"],
"@earendil-works/pi-ai": ["../../ai/dist/index.d.ts"],
"@earendil-works/pi-tui": ["../../tui/dist/index.d.ts"],
"@earendil-works/pi-web-ui": ["../dist/index.d.ts"]
},
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"useDefineForClassFields": false
},
"include": ["src/**/*"],
"exclude": ["../src"]
}