mirror of
https://github.com/Egonex-AI/Understand-Anything.git
synced 2026-06-22 10:58:03 +08:00
bdf6cf6856
- Add pnpm-workspace.yaml to plugin distribution so workspace:* deps resolve on install - Add devlop and hast-util-to-jsx-runtime as explicit dashboard dependencies (pnpm strict hoisting) - Make tsconfig.json files self-contained to work outside monorepo root - Add prepare script to auto-build core package after pnpm install - Bump version to 1.0.2
20 lines
430 B
JSON
20 lines
430 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022"],
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src"
|
|
},
|
|
"include": ["src"]
|
|
}
|