docv-ged-archive/tsconfig.json
Nicolas Cantu b239d0b79a
Some checks failed
4NK Template Sync / check-and-sync (push) Has been cancelled
no-tracked-dotenv / verify-no-tracked-dotenv (push) Has been cancelled
Adjust archive frontend tooling configs for runtime path alignment.
Update TypeScript and Vite settings so frontend runtime imports stay consistent with the current shared module layout.
2026-05-15 23:07:09 +02:00

29 lines
687 B
JSON

{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"target": "ES6",
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"],
"@frontend-runtime/*": ["../apps/agent-studio-web/public/shared/frontend-runtime/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}