stack/packages/shared/tsconfig.json
Bilal Godil a0644b82e1 Hexclave rename PR5: rename package dirs to drop stack- prefix (Step 16/A)
git mv packages/stack-shared->shared, stack-ui->ui, stack-sc->sc, stack-cli->cli,
and stack->next (the generated @hexclave/next pkg, regenerated via generate-sdks
dest change). Fixed deep-relative imports (pacifica/surface.tsx), tailwind content
glob, CI emulator paths, root cli script, generate-setup-prompt-docs + skills
relative imports, and comments. Reinstalled. build + typecheck + lint green (28/28).
2026-06-03 12:17:56 -07:00

23 lines
516 B
JSON

{
"compilerOptions": {
"jsx": "react-jsx",
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"declarationMap": true,
"target": "ES2021",
"lib": ["DOM", "DOM.Iterable", "ES2021", "ES2022.Error"],
"module": "ES2020",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"noErrorTruncation": true,
"strict": true,
"skipLibCheck": true,
"types": [
"vitest/importMeta"
]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}