mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 13:03:42 +00:00
22 lines
581 B
JSON
22 lines
581 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@mariozechner/pi-ai": ["../../ai/dist/index.d.ts"],
|
|
"@mariozechner/pi-tui": ["../../tui/dist/index.d.ts"],
|
|
"@mariozechner/pi-web-ui": ["../dist/index.d.ts"]
|
|
},
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["../src"]
|
|
}
|