Archipelago — open-source initial import

This commit is contained in:
Archipelago
2026-08-12 10:55:49 +00:00
commit 081dab5934
2056 changed files with 468143 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"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" }
]
}