Files
archy/aiui/tsconfig.json
archipelago 7ba3109b6d Add 'aiui/' from commit 'e30ac1d1069532fb6d652d87e2d4a2fe9d1b4773'
git-subtree-dir: aiui
git-subtree-mainline: 0c4826f8cc
git-subtree-split: e30ac1d106
2026-08-03 15:07:11 -04:00

25 lines
589 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"jsx": "preserve",
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@aiui/core": ["./packages/core/src"],
"@aiui/core/*": ["./packages/core/src/*"]
}
},
"references": [
{ "path": "./packages/core" },
{ "path": "./packages/app" }
]
}